Uses of Class
easik.sketch.datatype.DataType

Packages that use DataType
easik.sketch.attribute   
easik.sketch.datatype   
easik.sketch.util   
easik.sketch.vertex   
easik.ui.datatype   
 

Uses of DataType in easik.sketch.attribute
 

Fields in easik.sketch.attribute declared as DataType
private  DataType AttributeUI._attType
          The type of teh attribute
private  DataType EntityAttribute._dataType
          The data type of the attribute
 

Methods in easik.sketch.attribute that return DataType
 DataType AttributeUI.getAttType()
          Returns the attribute data type
 DataType EntityAttribute.getDataType()
          Returns data type
 

Methods in easik.sketch.attribute with parameters of type DataType
 void EntityAttribute.setDataType(DataType inType)
          Sets the data type of the attribute
 

Constructors in easik.sketch.attribute with parameters of type DataType
EntityAttribute(java.lang.String inName, DataType inDataType)
          Default Constructor
 

Uses of DataType in easik.sketch.datatype
 

Fields in easik.sketch.datatype with type parameters of type DataType
private  java.util.ArrayList<DataType> DataTypeController._dataTypes
          The data types defined for this data type controller
 

Methods in easik.sketch.datatype that return DataType
 DataType DataTypeController.addNewDataType()
          Adds a new data type entry to the _dataTypes ArrayList, and returns it
 

Methods in easik.sketch.datatype with parameters of type DataType
 void DataTypeController.addDataType(DataType inType)
          Adds a new data type entry to the _dataTypes ArrayList
 boolean DataTypeController.isNameFree(DataType inType, java.lang.String newName)
          Checks to see if the data type name is used by any other data type other then itself
 void DataTypeController.removeDataType(DataType inType, DataType inReplacement)
          Removes the data type from the array.
 

Uses of DataType in easik.sketch.util
 

Fields in easik.sketch.util declared as DataType
private  DataType SketchHandler._curType
          The data type of the current attribute
 

Fields in easik.sketch.util with type parameters of type DataType
private  java.util.ArrayList<DataType> SketchHandler._datatypes
          The data types defined for the sketch
 

Methods in easik.sketch.util that return types with arguments of type DataType
 java.util.ArrayList<DataType> SketchHandler.getDataTypes()
          Returns ArrayList of data types
 

Uses of DataType in easik.sketch.vertex
 

Methods in easik.sketch.vertex with parameters of type DataType
 void EntityNode.addAttribute(java.lang.String inName, DataType inAttributeType)
          Creates a new EntityAttribute and add its to the list of attributes
 

Uses of DataType in easik.ui.datatype
 

Fields in easik.ui.datatype declared as DataType
private  DataType DataTypePane._dataType
          The data type associated with the pane
 

Constructors in easik.ui.datatype with parameters of type DataType
DataTypePane(DataType inType, DataTypeController inCont, DatatypesUI inUI)
          Default Constructor.