public interface IWidgetWrapperFactory
Modifier and Type | Method and Description |
---|---|
IComposite |
createComposite(java.lang.Object uiReference)
Creates a IComposite from an ui-platform specific ui-reference
Remark: The created IComposite has no parent set
|
IFrame |
createFrame(java.lang.Object uiReference)
Creates a IFrame from an ui-platform specific ui-reference
Remark: The created IFrame has no parent set
|
boolean |
isConvertibleToComposite(java.lang.Object uiReference)
Tests if the ui reference can be converted / wrapped to an IComposite
|
boolean |
isConvertibleToFrame(java.lang.Object uiReference)
Tests if the ui reference can be converted / wrapped to an IFrame
|
boolean isConvertibleToFrame(java.lang.Object uiReference)
uiReference
- IFrame createFrame(java.lang.Object uiReference)
uiReference
- The ui-platform specific object that shall be wrapped to an
IFrame (e.g. Window for Swing, Shell for swt).java.lang.IllegalArgumentException
- If the ui-reference could not be wrapped to an IFrame.boolean isConvertibleToComposite(java.lang.Object uiReference)
uiReference
- IComposite createComposite(java.lang.Object uiReference)
uiReference
- The ui-platform specific object that shall be wrapped to an
IComposite (e.g. Container for Swing, Composite for swt).java.lang.IllegalArgumentException
- If the ui-reference could not be wrapped to an IComposite.Siehe auch Jowidgets Nutzerhandbuch