Files
Brainstorm/Foundation SWT/src/com/foundation/view/swt/CenterLayout.java

44 lines
1.2 KiB
Java
Raw Normal View History

2014-05-30 10:31:51 -07:00
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//