51 lines
1.2 KiB
Java
51 lines
1.2 KiB
Java
|
|
/*
|
||
|
|
* Copyright (c) 2008,2009 Declarative Engineering LLC.
|
||
|
|
* All rights reserved. This program and the accompanying materials
|
||
|
|
* are made available under the terms of the Declarative Engineering LLC
|
||
|
|
* verson 1 which accompanies this distribution, and is available at
|
||
|
|
* http://declarativeengineering.com/legal/DE_Developer_License_v1.txt
|
||
|
|
*/
|
||
|
|
package com.foundation.tcv.swt.server;
|
||
|
|
|
||
|
|
import com.foundation.tcv.server.controller.SessionViewController;
|
||
|
|
import com.foundation.view.IAbstractContainer;
|
||
|
|
|
||
|
|
public class DynamicMenu extends AbstractComponent {
|
||
|
|
|
||
|
|
/**
|
||
|
|
* DynamicMenu constructor.
|
||
|
|
*/
|
||
|
|
public DynamicMenu() {
|
||
|
|
}
|
||
|
|
|
||
|
|
/**
|
||
|
|
* DynamicMenu constructor.
|
||
|
|
* @param sessionViewController
|
||
|
|
*/
|
||
|
|
public DynamicMenu(SessionViewController sessionViewController) {
|
||
|
|
super(sessionViewController);
|
||
|
|
}
|
||
|
|
|
||
|
|
/* (non-Javadoc)
|
||
|
|
* @see com.foundation.tcv.swt.server.AbstractComponent#getClientClassName()
|
||
|
|
*/
|
||
|
|
protected String getClientClassName() {
|
||
|
|
return null;
|
||
|
|
}
|
||
|
|
|
||
|
|
/* (non-Javadoc)
|
||
|
|
* @see com.foundation.tcv.swt.server.AbstractComponent#getContainer()
|
||
|
|
*/
|
||
|
|
public IAbstractContainer getContainer() {
|
||
|
|
return null;
|
||
|
|
}
|
||
|
|
|
||
|
|
/* (non-Javadoc)
|
||
|
|
* @see com.foundation.view.IAbstractComponent#getName()
|
||
|
|
*/
|
||
|
|
public String getName() {
|
||
|
|
return null;
|
||
|
|
}
|
||
|
|
|
||
|
|
}
|