Package com.hp.lft.sdk.oracle
Class TableDescription
java.lang.Object
com.hp.lft.sdk.internal.PropertiesDescriptionBase
com.hp.lft.sdk.PropertiesDescription
com.hp.lft.sdk.DescriptionBase
com.hp.lft.sdk.oracle.UiObjectBaseDescription
com.hp.lft.sdk.oracle.TableDescription
- All Implemented Interfaces:
CloneableObject
,Description
,com.hp.lft.sdk.internal.DescriptionWithVri
,Cloneable
The description of a Oracle Table test object.
-
Nested Class Summary
Nested ClassesModifier and TypeClassDescriptionstatic class
This class can be used to construct an instance of the TableDescription class using the builder pattern.protected static class
TableDescription.Init<T extends TableDescription.Init<T>>
Helper class for TableDescription.Builder. -
Field Summary
Fields inherited from class com.hp.lft.sdk.internal.PropertiesDescriptionBase
properties
-
Constructor Summary
ConstructorsModifierConstructorDescriptionInitializes a new instance of the TableDescription class.protected
TableDescription
(TableDescription.Init<?> init) Initializes a new instance of the TableDescription class using the Builder pattern. -
Method Summary
Modifier and TypeMethodDescriptionString[]
Returns the collection of column headers in a table.Returns the number of columns in the table.Returns the name of the object supplied by the server.Returns the number of visible rows in the table.Indicates whether the object is enable.void
setColumnHeaders
(String[] columnHeaders) Sets a collection of column headers in a table.void
setColumnsCount
(Integer columnsCount) Sets the number of columns in the table.void
setEnabled
(Boolean isEnabled) Sets whether the object is enable.void
setObjectName
(StringProperty objectName) Sets the name of the object supplied by the server.void
setObjectName
(String objectName) Sets the name of the object supplied by the server.void
setRowsCount
(Integer rowsCount) Sets the number of visible rows in the table.Methods inherited from class com.hp.lft.sdk.oracle.UiObjectBaseDescription
getAbsoluteLocation, getLocation, getObjectType, getSize, setAbsoluteLocation, setAbsoluteLocation, setAbsoluteLocation, setLocation, setLocation, setLocation, setObjectType, setObjectType, setSize, setSize, setSize
Methods inherited from class com.hp.lft.sdk.DescriptionBase
cloneTo, getIndex, getIndexType, getObjectProperties, getVRI, setIndex, setIndexType, setObjectProperties, setVRI, setVRI
Methods inherited from class com.hp.lft.sdk.PropertiesDescription
clone
Methods inherited from class com.hp.lft.sdk.internal.PropertiesDescriptionBase
getValueAs, getValueAsStringProperty, insertValue
Methods inherited from class java.lang.Object
equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
Methods inherited from interface com.hp.lft.sdk.CloneableObject
clone
-
Constructor Details
-
TableDescription
public TableDescription()Initializes a new instance of the TableDescription class. -
TableDescription
Initializes a new instance of the TableDescription class using the Builder pattern.- Parameters:
init
- the Builder pattern.
-
-
Method Details
-
setEnabled
Sets whether the object is enable.- Parameters:
isEnabled
- true to set as enabled.
-
isEnabled
Indicates whether the object is enable.- Returns:
- true if enabled.
-
setObjectName
Sets the name of the object supplied by the server.- Parameters:
objectName
- the window objectName.
-
setObjectName
Sets the name of the object supplied by the server.- Parameters:
objectName
- aStringProperty
orRegExpProperty
.
-
getObjectName
Returns the name of the object supplied by the server.- Returns:
- the name of the object supplied by the server.
-
setRowsCount
Sets the number of visible rows in the table.- Parameters:
rowsCount
- the number of rows in a table.
-
getRowsCount
Returns the number of visible rows in the table.- Returns:
- the number of visible rows in the table.
-
setColumnsCount
Sets the number of columns in the table.- Parameters:
columnsCount
- the number of columns in a table.
-
getColumnsCount
Returns the number of columns in the table.- Returns:
- the number of columns in the table.
-
setColumnHeaders
Sets a collection of column headers in a table.- Parameters:
columnHeaders
- a collection of column headers in a table.
-
getColumnHeaders
Returns the collection of column headers in a table.- Returns:
- the collection of column headers in a table.
-