Package com.hp.lft.sdk.te
Class PositionProperty
java.lang.Object
com.hp.lft.sdk.te.PositionProperty
- All Implemented Interfaces:
- CloneableObject,- com.hp.lft.sdk.internal.GroupedProperty,- Cloneable
public class PositionProperty
extends Object
implements com.hp.lft.sdk.internal.GroupedProperty, CloneableObject
The position properties of a Terminal Emulator object.
- 
Field SummaryFields
- 
Constructor SummaryConstructorsConstructorDescriptionInitializes a new instance of the PositionProperty class.PositionProperty(Position position) Initializes a new instance of the PositionProperty class with the provided Position.PositionProperty(PositionProperty positionToCopy) Initializes a new instance of the PositionProperty class by copying the values of the provided PositionProperty.PositionProperty(Integer row, Integer column) Initializes a new instance of the PositionProperty class with the specified row and column values.
- 
Method SummaryModifier and TypeMethodDescriptionclone()Returns a clone of this instance.Returns the column component of the test object position.getRow()Returns the row component of the test object position.Sets the column component of the test object position.Returns the row component of the test object position.toString()
- 
Field Details- 
rowThe row attribute of the test object position.
- 
columnThe column attribute of the test object position.
 
- 
- 
Constructor Details- 
PositionPropertypublic PositionProperty()Initializes a new instance of the PositionProperty class.
- 
PositionPropertyInitializes a new instance of the PositionProperty class with the provided Position.- Parameters:
- position- the- Positionto use.
 
- 
PositionPropertyInitializes a new instance of the PositionProperty class with the specified row and column values.- Parameters:
- row- the row to initialize the PositionProperty with.
- column- the column to initialize the PositionProperty with.
 
- 
PositionPropertyInitializes a new instance of the PositionProperty class by copying the values of the provided PositionProperty.- Parameters:
- positionToCopy- a PositionProperty whose values will be copied to the new instance.
 
 
- 
- 
Method Details- 
cloneDescription copied from interface:CloneableObjectReturns a clone of this instance.- Specified by:
- clonein interface- CloneableObject
- Overrides:
- clonein class- Object
- Returns:
- a clone of this instance.
- Throws:
- CloneNotSupportedException- if the instance cannot be cloned.
 
- 
getProperties- Specified by:
- getPropertiesin interface- com.hp.lft.sdk.internal.GroupedProperty
 
- 
getColumnReturns the column component of the test object position.- Returns:
- the column component of the test object position.
 
- 
setColumnSets the column component of the test object position.- Parameters:
- column- the column component of the test object position.
- Returns:
- the PositionProperty instance with the updated state (builder pattern).
 
- 
getRowReturns the row component of the test object position.- Returns:
- the row component of the test object position.
 
- 
setRowReturns the row component of the test object position.- Parameters:
- row- the row component of the test object position.
- Returns:
- the PositionProperty instance with the updated state (builder pattern).
 
- 
toString
 
-