org.eclipse.jpt.core.resource.orm
Interface XmlColumn

All Superinterfaces:
org.eclipse.emf.ecore.EObject, JpaEObject, org.eclipse.emf.common.notify.Notifier, XmlAbstractColumn, XmlNamedColumn
All Known Implementing Classes:
XmlColumnImpl

public interface XmlColumn
extends XmlAbstractColumn

A representation of the model object 'Column'. Provisional API: This interface is part of an interim API that is still under development and expected to change significantly before reaching stability. It is available at this early stage to solicit feedback from pioneering adopters on the understanding that any code that uses this API will almost certainly be broken (repeatedly) as the API evolves.

The following features are supported:

See Also:
OrmPackage.getXmlColumn()

Method Summary
 java.lang.Integer getLength()
          Returns the value of the 'Length' attribute.
 java.lang.Integer getPrecision()
          Returns the value of the 'Precision' attribute.
 java.lang.Integer getScale()
          Returns the value of the 'Scale' attribute.
 void setLength(java.lang.Integer value)
          Sets the value of the 'Length' attribute.
 void setPrecision(java.lang.Integer value)
          Sets the value of the 'Precision' attribute.
 void setScale(java.lang.Integer value)
          Sets the value of the 'Scale' attribute.
 
Methods inherited from interface org.eclipse.jpt.core.resource.orm.XmlAbstractColumn
getInsertable, getNullable, getTable, getTableTextRange, getUnique, getUpdatable, setInsertable, setNullable, setTable, setUnique, setUpdatable
 
Methods inherited from interface org.eclipse.jpt.core.resource.orm.XmlNamedColumn
getColumnDefinition, getName, getNameTextRange, setColumnDefinition, setName
 
Methods inherited from interface org.eclipse.jpt.core.resource.common.JpaEObject
containsOffset, getPlatformResource, getResource, getRoot, getSelectionTextRange, getValidationTextRange, isAllFeaturesUnset
 
Methods inherited from interface org.eclipse.emf.ecore.EObject
eAllContents, eClass, eContainer, eContainingFeature, eContainmentFeature, eContents, eCrossReferences, eGet, eGet, eIsProxy, eIsSet, eResource, eSet, eUnset
 
Methods inherited from interface org.eclipse.emf.common.notify.Notifier
eAdapters, eDeliver, eNotify, eSetDeliver
 

Method Detail

getLength

java.lang.Integer getLength()
Returns the value of the 'Length' attribute.

If the meaning of the 'Length' attribute isn't clear, there really should be more of a description here...

Returns:
the value of the 'Length' attribute.
See Also:
setLength(Integer), OrmPackage.getXmlColumn_Length()

setLength

void setLength(java.lang.Integer value)
Sets the value of the 'Length' attribute.

Parameters:
value - the new value of the 'Length' attribute.
See Also:
getLength()

getPrecision

java.lang.Integer getPrecision()
Returns the value of the 'Precision' attribute.

If the meaning of the 'Precision' attribute isn't clear, there really should be more of a description here...

Returns:
the value of the 'Precision' attribute.
See Also:
setPrecision(Integer), OrmPackage.getXmlColumn_Precision()

setPrecision

void setPrecision(java.lang.Integer value)
Sets the value of the 'Precision' attribute.

Parameters:
value - the new value of the 'Precision' attribute.
See Also:
getPrecision()

getScale

java.lang.Integer getScale()
Returns the value of the 'Scale' attribute.

If the meaning of the 'Scale' attribute isn't clear, there really should be more of a description here...

Returns:
the value of the 'Scale' attribute.
See Also:
setScale(Integer), OrmPackage.getXmlColumn_Scale()

setScale

void setScale(java.lang.Integer value)
Sets the value of the 'Scale' attribute.

Parameters:
value - the new value of the 'Scale' attribute.
See Also:
getScale()