Uses of Interface
org.eobjects.metamodel.schema.Schema

Packages that use Schema
org.eobjects.metamodel Root package for MetaModel 
org.eobjects.metamodel.create API for creating tables 
org.eobjects.metamodel.drop API for dropping tables 
org.eobjects.metamodel.intercept   
org.eobjects.metamodel.query.builder API for query building 
org.eobjects.metamodel.schema API for schema structure 
 

Uses of Schema in org.eobjects.metamodel
 

Methods in org.eobjects.metamodel that return Schema
 Schema DataContext.getDefaultSchema()
          Gets the default schema of this DataContext.
 Schema AbstractDataContext.getDefaultSchema()
          Gets the default schema of this DataContext.
protected  Schema QueryPostprocessDelegate.getMainSchema()
           
protected abstract  Schema QueryPostprocessDataContext.getMainSchema()
           
protected  Schema QueryPostprocessDataContext.getMainSchemaInternal()
           
 Schema DataContext.getSchemaByName(String name)
          Gets a schema by a specified name.
 Schema AbstractDataContext.getSchemaByName(String name)
          Gets a schema by a specified name.
protected  Schema QueryPostprocessDataContext.getSchemaByNameInternal(String name)
           
 Schema CompositeDataContext.getSchemaByNameInternal(String name)
           
protected abstract  Schema AbstractDataContext.getSchemaByNameInternal(String name)
          Gets a specific schema from the non-abstract implementation.
 Schema[] DataContext.getSchemas()
          Gets all schemas within this DataContext.
 Schema[] AbstractDataContext.getSchemas()
          Gets all schemas within this DataContext.
 

Methods in org.eobjects.metamodel with parameters of type Schema
 TableDropBuilder AbstractUpdateCallback.dropTable(Schema schema, String tableName)
           
static boolean MetaModelHelper.isInformationSchema(Schema schema)
          Determines if a schema is an information schema
 

Uses of Schema in org.eobjects.metamodel.create
 

Methods in org.eobjects.metamodel.create that return Schema
protected  Schema AbstractTableCreationBuilder.getSchema()
           
 

Methods in org.eobjects.metamodel.create with parameters of type Schema
 TableCreationBuilder TableCreatable.createTable(Schema schema, String name)
          Initiates the building of a table creation operation.
 

Constructors in org.eobjects.metamodel.create with parameters of type Schema
AbstractTableCreationBuilder(U updateCallback, Schema schema, String name)
           
CreateTable(Schema schema, String tableName)
           
 

Uses of Schema in org.eobjects.metamodel.drop
 

Methods in org.eobjects.metamodel.drop with parameters of type Schema
 TableDropBuilder TableDroppable.dropTable(Schema schema, String tableName)
           
 

Constructors in org.eobjects.metamodel.drop with parameters of type Schema
DropTable(Schema schema, String tableName)
           
 

Uses of Schema in org.eobjects.metamodel.intercept
 

Methods in org.eobjects.metamodel.intercept that return Schema
 Schema InterceptableDataContext.getDefaultSchema()
           
 Schema InterceptableDataContext.getSchemaByName(String name)
           
 Schema[] InterceptableDataContext.getSchemas()
           
 

Methods in org.eobjects.metamodel.intercept that return types with arguments of type Schema
 InterceptorList<Schema> InterceptableDataContext.getSchemaInterceptors()
           
 

Uses of Schema in org.eobjects.metamodel.query.builder
 

Methods in org.eobjects.metamodel.query.builder with parameters of type Schema
 TableFromBuilder InitFromBuilderImpl.from(Schema schema, String tableName)
           
 TableFromBuilder InitFromBuilder.from(Schema schema, String tableName)
           
 

Uses of Schema in org.eobjects.metamodel.schema
 

Classes in org.eobjects.metamodel.schema that implement Schema
 class AbstractSchema
          Abstract implementation of the Schema interface.
 class CompositeSchema
          A composite schema, comprising tables from several DataContexts.
 class ImmutableSchema
          An immutable implementation of the Schema interface.
 class MutableSchema
          Represents a schema and it's metadata.
 

Fields in org.eobjects.metamodel.schema declared as Schema
protected  Schema MutableTable._schema
           
 

Methods in org.eobjects.metamodel.schema that return Schema
 Schema Table.getSchema()
          Gets the schema that this table resides in.
 Schema MutableTable.getSchema()
           
 

Methods in org.eobjects.metamodel.schema with parameters of type Schema
 int AbstractSchema.compareTo(Schema that)
           
 MutableTable MutableTable.setSchema(Schema schema)
           
 

Constructors in org.eobjects.metamodel.schema with parameters of type Schema
ImmutableSchema(Schema schema)
           
MutableTable(String name, TableType type, Schema schema)
           
MutableTable(String name, TableType type, Schema schema, Column... columns)
           
 

Constructor parameters in org.eobjects.metamodel.schema with type arguments of type Schema
CompositeSchema(String name, Collection<? extends Schema> delegates)
           
 



Copyright © 2007-2013. All Rights Reserved.