Interface IMultiValue
-
- All Superinterfaces:
com4j.Com4jObject
public interface IMultiValue extends com4j.Com4jObject
Represents several values stored in a single field.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description IList
list()
List of values.java.lang.Object
list(int index)
void
list(IList pVal)
List of values.java.lang.String
text()
Text representation of values list.void
text(java.lang.String pVal)
Text representation of values list.
-
-
-
Method Detail
-
text
java.lang.String text()
Text representation of values list. Items are separated with a semicolon.
Getter method for the COM property "Text"
- Returns:
- Returns a value of type java.lang.String
-
text
void text(java.lang.String pVal)
Text representation of values list. Items are separated with a semicolon.
Setter method for the COM property "Text"
- Parameters:
pVal
- Mandatory java.lang.String parameter.
-
list
IList list()
List of values. Each item is the string representation of a single value.
Getter method for the COM property "List"
- Returns:
- Returns a value of type step.repository.alm.v16.otaclient.IList
-
list
java.lang.Object list(int index)
-
list
void list(IList pVal)
List of values. Each item is the string representation of a single value.
Setter method for the COM property "List"
- Parameters:
pVal
- Mandatory step.repository.alm.v16.otaclient.IList parameter.
-
-