34 lines
948 B
Java
34 lines
948 B
Java
package com.foundation.tcv.swt.server;
|
|
|
|
public class CenterLayout extends Layout {
|
|
/**
|
|
* CenterLayout constructor.
|
|
* @param container The container that is using the layout.
|
|
*/
|
|
public CenterLayout(AbstractComponent container) {
|
|
super(container);
|
|
//Initialize the client component.//
|
|
sendMessage(MESSAGE_INITIALIZE, getContainer().getNumber());
|
|
}//CenterLayout()//
|
|
/* (non-Javadoc)
|
|
* @see com.foundation.tcv.swt.server.Layout#getClientClassName()
|
|
*/
|
|
protected String getClientClassName() {
|
|
return "com.foundation.tcv.swt.client.CenterLayout";
|
|
}//getClientClassName()//
|
|
/* (non-Javadoc)
|
|
* @see com.foundation.tcv.swt.server.Layout#initialize()
|
|
*/
|
|
public void initialize() {
|
|
}//initialize()//
|
|
/* (non-Javadoc)
|
|
* @see com.foundation.tcv.swt.server.Layout#refresh()
|
|
*/
|
|
public void refresh() {
|
|
}//refresh()//
|
|
/* (non-Javadoc)
|
|
* @see com.foundation.tcv.swt.server.Layout#release()
|
|
*/
|
|
public void release() {
|
|
}//release()//
|
|
}//CenterLayout// |