org.modelsphere.sms.or.db
Class DbORTable

java.lang.Object
  extended by PersistentObject
      extended by org.modelsphere.jack.baseDb.db.DbObject
          extended by org.modelsphere.jack.baseDb.db.DbSemanticalObject
              extended by org.modelsphere.sms.db.DbSMSSemanticalObject
                  extended by org.modelsphere.sms.db.DbSMSClassifier
                      extended by org.modelsphere.sms.or.db.DbORAbsTable
                          extended by org.modelsphere.sms.or.db.DbORTable
Direct Known Subclasses:
DbIBMTable, DbINFTable, DbORAAbsTable

public abstract class DbORTable
extends DbORAbsTable

Direct subclass(es)/subinterface(s) : DbORAAbsTable, DbIBMTable, DbINFTable, DbGETable.
Composites : none.
Components : DbSMSObjectImport.


Nested Class Summary
 
Nested classes/interfaces inherited from class org.modelsphere.jack.baseDb.db.DbObject
DbObject.ComponentIterator
 
Field Summary
static MetaField fIsAssociation
           
static MetaField fIsDependant
           
static MetaClass metaClass
           
 
Fields inherited from class org.modelsphere.sms.or.db.DbORAbsTable
fAssociationEnds, fSelectionRule, fUser
 
Fields inherited from class org.modelsphere.sms.db.DbSMSClassifier
fClassifierGos
 
Fields inherited from class org.modelsphere.sms.db.DbSMSSemanticalObject
fObjectImports, fSourceLinks, fSubCopies, fSuperCopy, fTargetLinks, fUmlConstraints, fUmlStereotype
 
Fields inherited from class org.modelsphere.jack.baseDb.db.DbSemanticalObject
fAdminAccessList, fAlias, fDescription, fName, fPhysicalName, fWriteAccessList
 
Fields inherited from class org.modelsphere.jack.baseDb.db.DbObject
ACCESS_GRANTED, ACCESS_NOT_GRANTED, fComponents, fComposite, fCreationTime, fModificationTime, fUdfValues, fValidationStatus, LONG_FORM, SHORT_FORM, VALIDATION_ERROR, VALIDATION_OK, VALIDATION_WARNING, writeAccess
 
Constructor Summary
DbORTable()
          Parameter-less constructor.
DbORTable(DbObject composite)
          Creates an instance of DbORTable.
 
Method Summary
 java.lang.Boolean getIsAssociation()
          Deprecated. use isIsAssociation() method instead
 java.lang.Boolean getIsDependant()
          Deprecated. use isIsDependant() method instead
static void initMeta()
          For internal use only.
 boolean isIsAssociation()
          Tells whether a DbORTable's instance is isAssociation or not.
 boolean isIsDependant()
          Tells whether a DbORTable's instance is isDependant or not.
 void set(MetaField metaField, java.lang.Object value)
           
 void set(MetaRelationN relation, DbObject neighbor, int op)
           
 void setIsAssociation(java.lang.Boolean value)
          Sets the "is association table" property of a DbORTable's instance.
 void setIsDependant(java.lang.Boolean value)
          Sets the "is dependant" property of a DbORTable's instance.
 
Methods inherited from class org.modelsphere.sms.or.db.DbORAbsTable
getAssociationEnds, getSecurityMask, getSelectionRule, getUser, setSelectionRule, setSuperCopy, setUser
 
Methods inherited from class org.modelsphere.sms.db.DbSMSClassifier
getClassifierGos
 
Methods inherited from class org.modelsphere.sms.db.DbSMSSemanticalObject
addToSourceLinks, addToTargetLinks, addToUmlConstraints, getObjectImports, getSourceLinks, getSubCopies, getSuperCopy, getTargetLinks, getUmlConstraints, getUmlStereotype, removeFromSourceLinks, removeFromTargetLinks, removeFromUmlConstraints, setSourceLinks, setTargetLinks, setUmlConstraints, setUmlStereotype
 
Methods inherited from class org.modelsphere.jack.baseDb.db.DbSemanticalObject
findComponentByPhysicalName, getAdminAccessList, getAlias, getDescription, getName, getPhysicalName, getWriteAccessList, matches, setAlias, setDescription, setName, setPhysicalName
 
Methods inherited from class org.modelsphere.jack.baseDb.db.DbObject
addDbRefreshListener, addDbRefreshListener, basicReinsert, basicSet, basicSet, buildFullNameString, buildFullNameString, componentTree, componentTree, componentTree, copyComponent, createComponent, createComponent, createRAMRelN, deepCopy, deepCopy, doDeleteAction, findComponentByName, findComponentByName, findMatchingObject, generateEDCTimestamp, get, get, get, getAccordingToStatus, getComponents, getComposite, getCompositeOfType, getCreationTime, getDb, getDependencyRelations, getEDCTimestamp, getFullDisplayName, getId, getMatchingObject, getMetaClass, getMinCard, getModificationTime, getNbNeighbors, getNextTs, getOld, getProject, getSemanticalIcon, getSemanticalName, getTransStatus, getTs, getUDF, getUdfValues, getValidationStatus, hasAdminAccess, hasChanged, hasField, hasWriteAccess, isAddedAndRemoved, isAlive, isDeletable, isDescendingFrom, isHugeRelN, load, load, reinsert, remove, removeDbRefreshListener, save, set, setComposite, setMatchingObject, setModificationTime, setRelationNN, setRelationNN, setValidationStatus, toString, valuesAreEqual
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Field Detail

fIsDependant

public static final MetaField fIsDependant

fIsAssociation

public static final MetaField fIsAssociation

metaClass

public static final MetaClass metaClass
Constructor Detail

DbORTable

public DbORTable()
Parameter-less constructor. Required by Java Beans Conventions.


DbORTable

public DbORTable(DbObject composite)
          throws DbException
Creates an instance of DbORTable.

Parameters:
composite - the object which will contain the newly-created instance
Throws:
DbException
Method Detail

initMeta

public static void initMeta()
For internal use only.


setIsDependant

public final void setIsDependant(java.lang.Boolean value)
                          throws DbException
Sets the "is dependant" property of a DbORTable's instance.

Parameters:
value - the "is dependant" property
Throws:
DbException

setIsAssociation

public final void setIsAssociation(java.lang.Boolean value)
                            throws DbException
Sets the "is association table" property of a DbORTable's instance.

Parameters:
value - the "is association table" property
Throws:
DbException

set

public void set(MetaField metaField,
                java.lang.Object value)
         throws DbException
Overrides:
set in class DbORAbsTable
Throws:
DbException

set

public void set(MetaRelationN relation,
                DbObject neighbor,
                int op)
         throws DbException
Overrides:
set in class DbORAbsTable
Throws:
DbException

getIsDependant

public final java.lang.Boolean getIsDependant()
                                       throws DbException
Deprecated. use isIsDependant() method instead

Gets the "is dependant" property's Boolean value of a DbORTable's instance.

Returns:
the "is dependant" property's Boolean value
Throws:
DbException

isIsDependant

public final boolean isIsDependant()
                            throws DbException
Tells whether a DbORTable's instance is isDependant or not.

Returns:
boolean
Throws:
DbException

getIsAssociation

public final java.lang.Boolean getIsAssociation()
                                         throws DbException
Deprecated. use isIsAssociation() method instead

Gets the "is association table" property's Boolean value of a DbORTable's instance.

Returns:
the "is association table" property's Boolean value
Throws:
DbException

isIsAssociation

public final boolean isIsAssociation()
                              throws DbException
Tells whether a DbORTable's instance is isAssociation or not.

Returns:
boolean
Throws:
DbException


Open ModelSphere 2007. All Rights Reserved.