Uses of Class
rdbtoonto.dbmodel.TableDef

Packages that use TableDef
rdbtoonto.converters   
rdbtoonto.dbmodel   
 

Uses of TableDef in rdbtoonto.converters
 

Methods in rdbtoonto.converters with parameters of type TableDef
 com.hp.hpl.jena.ontology.OntClass RDBToOntoConverter.createClass(TableDef tableDef, java.lang.String prefix)
          Creates a class (without properties) from a table definition.
 com.hp.hpl.jena.ontology.OntClass RDBToOntoConverter.createClassWithAttributes(TableDef tableDef, java.util.Set<java.lang.String> excludedAtts, java.lang.String prefix)
          Creates a class from a table turning basic attributes into data type properties second parameters specifies a set of attributes to be ignored, along with those already excluded as specified in the constraint set of the table.
 com.hp.hpl.jena.ontology.Individual RDBToOntoConverter.createIndividualFromRow(TableDef tdef, Row row, com.hp.hpl.jena.ontology.OntClass cls, java.util.Vector namePattern, java.util.HashSet<java.lang.String> foreignCols)
          Creates an instance from a table row.
 java.lang.String RDBToOntoConverter.getExternalValueFromPatt(TableDef tdef, Row rowInstance, java.lang.String patt)
           
 java.lang.String RDBToOntoConverter.giveInstanceName(TableDef tdef, Row rowInstance, com.hp.hpl.jena.ontology.OntClass cls, java.util.Vector namePattern)
          Selects an unambiguous name for a new instance.
 boolean RDBToOntoConverter.isAssociation(TableDef table)
          Test if a table is an association between two other tables.
 void RDBToOntoConverter.keepTrackOfForeignValue(TableDef tdef, java.lang.String fcol, com.hp.hpl.jena.ontology.Individual ind, java.lang.String fkeyVal)
           
 void RDBToOntoConverter.keepTrackOfIndividual(TableDef tdef, Row row, com.hp.hpl.jena.ontology.OntClass cls, com.hp.hpl.jena.ontology.Individual ind)
           
 void RDBToOntoConverter.populateClassFromTable(TableDef tdef)
          Populates a class from a given table.
 void RDBToOntoConverter.removeDBAttDatatypePropLink(TableDef tableDef, Attribute att)
          Removes a bidirectional link between a DB attribute and a data type property.
 void RDBToOntoConverter.removeDBAttObjectPropLink(TableDef tableDef, java.lang.String name)
          Removes a bidirectional link between a DB attribute and data type property.
 

Uses of TableDef in rdbtoonto.dbmodel
 

Methods in rdbtoonto.dbmodel that return TableDef
 TableDef ForeignKey.getExternalTable()
           
 TableDef Table.getTableDef()
           
 TableDef DBSchema.getTableDef(java.lang.String name)
           
 TableDef Database.getTableDef(java.lang.String name)
           
 TableDef DBReader.lookForTableIgnoreCase(java.lang.String tName)
           
 

Methods in rdbtoonto.dbmodel that return types with arguments of type TableDef
 java.util.Collection<TableDef> DBSchema.getTableDefs()
           
 

Methods in rdbtoonto.dbmodel with parameters of type TableDef
 void DBSchema.addTableDef(TableDef table)
           
 Attribute DBReader.lookForAttIgnoreCase(java.lang.String attName, TableDef td)
           
 boolean DBReader.readDataTable(TableDef td)
           
 void Table.setTableDef(TableDef tableDef)
           
 

Constructors in rdbtoonto.dbmodel with parameters of type TableDef
ForeignKey(java.lang.String att, java.util.Vector<PrimaryKey> ekeys, TableDef etab)