net.sf.farrago.cwm.relational
Interface CwmSqlsimpleTypeClass

All Superinterfaces:
RefBaseObject, RefClass, RefFeatured
All Known Implementing Classes:
CwmSqlsimpleTypeClass$Hib

public interface CwmSqlsimpleTypeClass
extends RefClass

SQLSimpleType class proxy interface. A simple datatype used with an SQL column. Examples are Integer, Varchar, LOB, CLOB, etc...

Note: This type should not be subclassed, implemented or directly instantiated by clients. It is generated from a MOF metamodel and implemented by Enki or MDR.


Method Summary
 CwmSqlsimpleType createCwmSqlsimpleType()
          The default factory operation used to create an instance object.
 CwmSqlsimpleType createCwmSqlsimpleType(String name, VisibilityKind visibility, boolean isAbstract, Integer typeNumber, Integer characterMaximumLength, Integer characterOctetLength, Integer numericPrecision, Integer numericPrecisionRadix, Integer numericScale, Integer dateTimePrecision)
          Creates an instance object having attributes initialized by the passed values.
 
Methods inherited from interface javax.jmi.reflect.RefClass
refAllOfClass, refAllOfType, refCreateInstance, refCreateStruct, refCreateStruct, refGetEnum, refGetEnum
 
Methods inherited from interface javax.jmi.reflect.RefFeatured
refGetValue, refGetValue, refInvokeOperation, refInvokeOperation, refSetValue, refSetValue
 
Methods inherited from interface javax.jmi.reflect.RefBaseObject
equals, hashCode, refImmediatePackage, refMetaObject, refMofId, refOutermostPackage, refVerifyConstraints
 

Method Detail

createCwmSqlsimpleType

CwmSqlsimpleType createCwmSqlsimpleType()
The default factory operation used to create an instance object.

Returns:
The created instance object.

createCwmSqlsimpleType

CwmSqlsimpleType createCwmSqlsimpleType(String name,
                                        VisibilityKind visibility,
                                        boolean isAbstract,
                                        Integer typeNumber,
                                        Integer characterMaximumLength,
                                        Integer characterOctetLength,
                                        Integer numericPrecision,
                                        Integer numericPrecisionRadix,
                                        Integer numericScale,
                                        Integer dateTimePrecision)
Creates an instance object having attributes initialized by the passed values.

Parameters:
name - An identifier for the ModelElement within its containing Namespace.
visibility - Specifies extent of the visibility of the ModelElement within its owning Namespace.
isAbstract - An abstract Classifier is not instantiable.
typeNumber - The number assigned to the datatype by the owning RDBMS
characterMaximumLength - See [SQL], corresponding field in DATA_TYPE_DESCRIPTOR
characterOctetLength - See [SQL], corresponding field in DATA_TYPE_DESCRIPTOR
numericPrecision - See [SQL], corresponding field in DATA_TYPE_DESCRIPTOR
numericPrecisionRadix - See [SQL], corresponding field in DATA_TYPE_DESCRIPTOR
numericScale - See [SQL], corresponding field in DATA_TYPE_DESCRIPTOR
dateTimePrecision - See [SQL], corresponding field in DATA_TYPE_DESCRIPTOR
Returns:
The created instance object.