|
|
Package com.dassault_systemes.catjdialog |
Class CATWebPartFrame
|
Class Hierarchy |
java.lang.Object | +-com.dassault_systemes.catjdialog.CATCallbackSource | +-com.dassault_systemes.catjdialog.CATDialog | +-com.dassault_systemes.catjdialog.CATWebPartFrame
Class Location |
Class Description |
public class CATWebPartFrame
The webpart frame graphical component.
<webpart_path>.Title
entry.
You may also set it programmatically using setTitle()
.
All Implemented Interfaces: CATIContainerDialog
Field Summary |
Constructor Summary |
CATWebPartFrame(CATDialog iParent, String iName) |
Method Summary |
boolean | getBorder() |
void | setBorder(boolean iHasBorder) |
String | getTitle() |
void | setTitle(String iTitle) |
String | getStyle() |
void | setStyle(String iStyle) |
CATDialog | getContent() |
Field Detail |
Constructor Detail |
CATWebPartFrame(CATDialog iParent, String iName)Creates a webpart frame with the specified parent and name.
iParent
iName
Method Detail |
boolean getBorder()Determines whether the border is displayed or not.
true
if the border is displayed; false
otherwise.void setBorder(boolean iHasBorder)Shows/hides the border.
iHasBorder
true
, the border is displayed; otherwise it is hidden.String getTitle()Returns the webpart frame's title.
Returns the programmatic value if setTitle() has been called,
or tries to retrieve its title from the associated message catalog file
(<label_path>.Title
entry).
void setTitle(String iTitle)Sets the webpart frame's title.
Calling this method sets programmatically the title. This should
be reserved for cases where the title can only be determined by dynamic
means.
The standard way of defining components messages is using CATNls catalog
files (supports NLS).
iTitle
String getStyle()Returns the webpart icon URI. Default is null (no icon).
void setStyle(String iStyle)Sets the webpart icon URI. There is no default icon.
iStyle
resources/graphic
directory of the runtime view, or a full URL to an image resource. A null
value unsets the icon in this webpart frame.CATDialog getContent()Get the child widget that is the content of this webpart frame.