Initial commit from SVN.

This commit is contained in:
wcrisman
2014-05-30 10:31:51 -07:00
commit b45e56b890
1968 changed files with 370949 additions and 0 deletions

View File

@@ -0,0 +1,34 @@
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//