Package com.orchestranetworks.ui
Class UIFormLabelSpec
- java.lang.Object
-
- com.orchestranetworks.ui.UIFormLabelSpec
-
public final class UIFormLabelSpec extends Object
Specifies a label to display and optional additional documentation, accessible in a pop-up.In the context of a UI bean, for standard documentation extracted from the data model, it is recommended to use the method
UIResponseContext.addUILabel(Path)instead.
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classUIFormLabelSpec.DocumentationPaneDescribes the content of a documentation pane.
-
Constructor Summary
Constructors Constructor Description UIFormLabelSpec(UserMessage aLabelMessage)Creates a simple label with aUserMessage.UIFormLabelSpec(UIFormLabelSpec.DocumentationPane aDocumentationPane, UserMessage aLabelMessage)Creates a simple label with aUserMessageand a documentation pane that is displayed in a pop-up.UIFormLabelSpec(UIFormLabelSpec.DocumentationPane aDocumentationPane, String aLabelText)Creates a simple label and documentation pane displayed in a pop-up.UIFormLabelSpec(String aLabelText)Creates a simple label.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidsetMandatoryIndicator()Sets the mandatory field indicator on this label.
-
-
-
Constructor Detail
-
UIFormLabelSpec
public UIFormLabelSpec(String aLabelText)
Creates a simple label. This method is equivalent to:UIFormLabelSpec(null, aLabelText)
-
UIFormLabelSpec
public UIFormLabelSpec(UIFormLabelSpec.DocumentationPane aDocumentationPane, String aLabelText)
Creates a simple label and documentation pane displayed in a pop-up.
-
UIFormLabelSpec
public UIFormLabelSpec(UserMessage aLabelMessage)
Creates a simple label with aUserMessage. This method is equivalent to:UIFormLabelSpec(null, aLabelMessage)
-
UIFormLabelSpec
public UIFormLabelSpec(UIFormLabelSpec.DocumentationPane aDocumentationPane, UserMessage aLabelMessage)
Creates a simple label with aUserMessageand a documentation pane that is displayed in a pop-up.
-
-