Package com.saperion.ws.wrapper
Class SaWsPropertyValue
- java.lang.Object
-
- com.saperion.ws.wrapper.SaWsPropertyValue
-
public class SaWsPropertyValue extends java.lang.Object
This class wraps the SaPropertyValue class.- Author:
- Daniel Manzke
-
-
Constructor Summary
Constructors Constructor Description SaWsPropertyValue()
Creates a new instance of SaPropertyValueWrapper.SaWsPropertyValue(com.saperion.intf.SaPropertyValue result)
Creates a new instance of SaPropertyValueWrapper and wraps the original.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description int
getFieldType()
Reads the fieldtype.java.lang.String
getName()
Returns the name of this property.java.lang.String
getTablename()
Returns the tablename for this property.java.util.List<SaWsValue>
getValues()
Returns the value array of this property.void
setFieldType(int fType)
Sets the fieldtype.void
setName(java.lang.String proName)
Sets the name of this property.void
setTablename(java.lang.String tabName)
Sets the tablename for this property.void
setValues(java.util.List<SaWsValue> vals)
Sets the value array of this property.
-
-
-
Constructor Detail
-
SaWsPropertyValue
public SaWsPropertyValue()
Creates a new instance of SaPropertyValueWrapper.
-
SaWsPropertyValue
public SaWsPropertyValue(com.saperion.intf.SaPropertyValue result)
Creates a new instance of SaPropertyValueWrapper and wraps the original.- Parameters:
result
- Property value
-
-
Method Detail
-
getName
public java.lang.String getName()
Returns the name of this property.- Returns:
- Propertyname
-
setName
public void setName(java.lang.String proName)
Sets the name of this property.- Parameters:
proName
- Property name
-
getTablename
public java.lang.String getTablename()
Returns the tablename for this property.- Returns:
- Tablename
-
setTablename
public void setTablename(java.lang.String tabName)
Sets the tablename for this property.- Parameters:
tabName
- Table name
-
getValues
public java.util.List<SaWsValue> getValues()
Returns the value array of this property.- Returns:
- Value array
-
setValues
public void setValues(java.util.List<SaWsValue> vals)
Sets the value array of this property.- Parameters:
vals
- Values
-
getFieldType
public int getFieldType()
Reads the fieldtype.- Returns:
- Fieldtype as int
-
setFieldType
public void setFieldType(int fType)
Sets the fieldtype.- Parameters:
fType
- Field type
-
-