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

All Superinterfaces:
org.eclipse.emf.ecore.EObject, JpaEObject, org.eclipse.emf.common.notify.Notifier
All Known Subinterfaces:
XmlJoinTable, XmlSecondaryTable
All Known Implementing Classes:
AbstractXmlBaseTable, XmlJoinTableImpl, XmlSecondaryTableImpl, XmlTable

public interface XmlBaseTable
extends JpaEObject

A representation of the model object 'Xml Base Table'. 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.getXmlBaseTable()

Method Summary
 java.lang.String getCatalog()
          Returns the value of the 'Catalog' attribute.
 TextRange getCatalogTextRange()
          Return the TextRange for the catalog attibute.
 java.lang.String getName()
          Returns the value of the 'Name' attribute.
 TextRange getNameTextRange()
          Return the TextRange for the name attibute.
 java.lang.String getSchema()
          Returns the value of the 'Schema' attribute.
 TextRange getSchemaTextRange()
          Return the TextRange for the schema attibute.
 org.eclipse.emf.common.util.EList<XmlUniqueConstraint> getUniqueConstraints()
          Returns the value of the 'Unique Constraints' containment reference list.
 void setCatalog(java.lang.String value)
          Sets the value of the 'Catalog' attribute.
 void setName(java.lang.String value)
          Sets the value of the 'Name' attribute.
 void setSchema(java.lang.String value)
          Sets the value of the 'Schema' attribute.
 
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

getName

java.lang.String getName()
Returns the value of the 'Name' attribute.

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

Returns:
the value of the 'Name' attribute.
See Also:
setName(String), OrmPackage.getXmlBaseTable_Name()

setName

void setName(java.lang.String value)
Sets the value of the 'Name' attribute.

Parameters:
value - the new value of the 'Name' attribute.
See Also:
getName()

getCatalog

java.lang.String getCatalog()
Returns the value of the 'Catalog' attribute.

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

Returns:
the value of the 'Catalog' attribute.
See Also:
setCatalog(String), OrmPackage.getXmlBaseTable_Catalog()

setCatalog

void setCatalog(java.lang.String value)
Sets the value of the 'Catalog' attribute.

Parameters:
value - the new value of the 'Catalog' attribute.
See Also:
getCatalog()

getSchema

java.lang.String getSchema()
Returns the value of the 'Schema' attribute.

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

Returns:
the value of the 'Schema' attribute.
See Also:
setSchema(String), OrmPackage.getXmlBaseTable_Schema()

setSchema

void setSchema(java.lang.String value)
Sets the value of the 'Schema' attribute.

Parameters:
value - the new value of the 'Schema' attribute.
See Also:
getSchema()

getUniqueConstraints

org.eclipse.emf.common.util.EList<XmlUniqueConstraint> getUniqueConstraints()
Returns the value of the 'Unique Constraints' containment reference list. The list contents are of type XmlUniqueConstraint.

If the meaning of the 'Unique Constraints' containment reference list isn't clear, there really should be more of a description here...

Returns:
the value of the 'Unique Constraints' containment reference list.
See Also:
OrmPackage.getXmlBaseTable_UniqueConstraints()

getNameTextRange

TextRange getNameTextRange()
Return the TextRange for the name attibute. If the name attibute does not exist return the TextRange for the *table element.


getSchemaTextRange

TextRange getSchemaTextRange()
Return the TextRange for the schema attibute. If the schema attibute does not exist return the TextRange for the *table element.


getCatalogTextRange

TextRange getCatalogTextRange()
Return the TextRange for the catalog attibute. If the catalog attibute does not exist return the TextRange for the *table element.