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,44 @@
package com.foundation.view.swt;
public class CenterLayout extends Layout {
/**
* CenterLayout constructor.
* @param container The container that is using the layout.
*/
public CenterLayout(IAbstractSwtContainer container) {
super(container);
}//CenterLayout()//
/**
* CenterLayout constructor.
* @param cellContainer The container that is using the layout.
*/
public CenterLayout(ICellContainer cellContainer) {
super(cellContainer);
}//CenterLayout()//
/* (non-Javadoc)
* @see com.foundation.view.swt.Layout#createLayout(java.lang.Object)
*/
public org.eclipse.swt.widgets.Layout createLayout(Object rowObject) {
return new com.foundation.view.swt.layout.CenterLayout();
}//createLayout()//
/* (non-Javadoc)
* @see com.foundation.view.swt.Layout#initialize()
*/
public void initialize() {
}//initialize()//
/* (non-Javadoc)
* @see com.foundation.view.swt.Layout#refresh()
*/
public void refresh() {
}//refresh()//
/* (non-Javadoc)
* @see com.foundation.view.swt.Layout#release()
*/
public void release() {
}//release()//
/* (non-Javadoc)
* @see com.foundation.view.swt.Layout#synchronize()
*/
public void synchronize() {
}//synchronize()//
}//CenterLayout//