Package step.repository.alm.otaclient
Interface ITDField
-
- All Superinterfaces:
com4j.Com4jObject
public interface ITDField extends com4j.Com4jObject
Represents a field with field system properties and other properties.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
isValidValue(java.lang.Object value, com4j.Com4jObject pObject)
Checks if the input value is valid for the field.java.lang.String
name()
The database name of the current field.com4j.Com4jObject
property()
The FieldProperty object associated with the current field.int
type()
The field database type.
-
-
-
Method Detail
-
name
java.lang.String name()
The database name of the current field.
Getter method for the COM property "Name"
- Returns:
- Returns a value of type java.lang.String
-
type
int type()
The field database type.
Getter method for the COM property "Type"
- Returns:
- Returns a value of type int
-
property
com4j.Com4jObject property()
The FieldProperty object associated with the current field.
Getter method for the COM property "Property"
- Returns:
- Returns a value of type com4j.Com4jObject
-
isValidValue
void isValidValue(java.lang.Object value, com4j.Com4jObject pObject)
Checks if the input value is valid for the field.
- Parameters:
value
- Mandatory java.lang.Object parameter.pObject
- Mandatory com4j.Com4jObject parameter.
-
-