Interface WebComponentParameter
public interface WebComponentParameter
Specifies a parameter that can be used in the HTTP invocation
of a Web component.
- Since:
- 5.8.0
- See Also:
-
Method Summary
Modifier and TypeMethodDescriptionReturns the description of the parameter.getLabel()Returns the label of the parameter.getName()Returns the name of the parameter.booleanisInput()Returns whether the parameter is an input parameter.booleanisOutput()Returns whether the parameter is an output parameter.voidsetDescription(UserMessage description) Sets the description of the parameter.voidsetInput(boolean input) Enables or disables the parameter as an input parameter.voidsetLabel(UserMessage label) Sets the label of the parameter.voidsetOutput(boolean output) Enables or disables the parameter as an output parameter.
-
Method Details
-
getName
String getName()Returns the name of the parameter. -
getLabel
UserMessage getLabel()Returns the label of the parameter. -
setLabel
Sets the label of the parameter. -
getDescription
UserMessage getDescription()Returns the description of the parameter. -
setDescription
Sets the description of the parameter. -
isInput
boolean isInput()Returns whether the parameter is an input parameter. -
setInput
void setInput(boolean input) Enables or disables the parameter as an input parameter. -
isOutput
boolean isOutput()Returns whether the parameter is an output parameter. -
setOutput
void setOutput(boolean output) Enables or disables the parameter as an output parameter.
-