Uses of Class
org.apache.cayenne.map.DataMap

Packages that use DataMap
org.apache.cayenne.access Contains classes that make up Cayenne ORM stack. 
org.apache.cayenne.conf Contains classes dealing with Cayenne configuration files. 
org.apache.cayenne.gen Contains classes that provide Java source generation facility. 
org.apache.cayenne.jpa   
org.apache.cayenne.jpa.bridge   
org.apache.cayenne.map Contains O/R mapping classes that store relational database metadata information and map it to Java classes. 
org.apache.cayenne.map.event   
org.apache.cayenne.project Contains model classes used by CayenneModeler or any other MVC type of application to work with Cayenne project files. 
org.apache.cayenne.project.validator   
org.apache.cayenne.query Defines standard queries supported by Cayenne and extension mechanism to create custom queries. 
org.apache.cayenne.tools Command line tools and Ant tasks. 
org.apache.cayenne.util General utility classes. 
org.apache.cayenne.wocompat Contains classes that interface Cayenne with Apple's WebObjects
 

Uses of DataMap in org.apache.cayenne.access
 

Fields in org.apache.cayenne.access declared as DataMap
protected  DataMap DbGenerator.map
           
 

Methods in org.apache.cayenne.access that return DataMap
 DataMap DataDomain.getMap(String mapName)
          Returns DataMap matching name parameter.
 DataMap DbLoader.loadDataMapFromDB(String schemaName, String tablePattern, DataMap dataMap)
          Performs database reverse engineering and generates DataMap that contains default mapping of the tables and views.
 DataMap DbLoader.loadDataMapFromDB(String schemaName, String tablePattern, String[] tableTypes, DataMap dataMap)
          Performs database reverse engineering and generates DataMap object that contains default mapping of the tables and views.
 

Methods in org.apache.cayenne.access with parameters of type DataMap
 void DataNode.addDataMap(DataMap map)
          Adds a DataMap to be handled by this node.
 void DataDomain.addMap(DataMap map)
          Registers new DataMap with this domain.
 QueryEngine DataDomainLegacyQueryAction.engineForDataMap(DataMap map)
           
 DataMap DbLoader.loadDataMapFromDB(String schemaName, String tablePattern, DataMap dataMap)
          Performs database reverse engineering and generates DataMap that contains default mapping of the tables and views.
 DataMap DbLoader.loadDataMapFromDB(String schemaName, String tablePattern, String[] tableTypes, DataMap dataMap)
          Performs database reverse engineering and generates DataMap object that contains default mapping of the tables and views.
 boolean DbLoader.loadDbEntities(DataMap map, List tables)
          Loads dbEntities for the specified tables.
 void DbLoader.loadDbRelationships(DataMap map)
          Loads database relationships into a DataMap.
 void DbLoader.loadObjEntities(DataMap map)
          Creates an ObjEntity for each DbEntity in the map.
 void DbLoader.loadProceduresFromDB(String schemaPattern, String namePattern, DataMap dataMap)
          Loads database stored procedures into the DataMap.
 DataNode DataDomain.lookupDataNode(DataMap map)
          Returns a DataNode that should handle queries for all entities in a DataMap.
 DataNode DataNode.lookupDataNode(DataMap dataMap)
          Returns a DataNode that should hanlde queries for all DataMap components.
 

Constructors in org.apache.cayenne.access with parameters of type DataMap
DbGenerator(DbAdapter adapter, DataMap map)
          Creates and initializes new DbGenerator.
DbGenerator(DbAdapter adapter, DataMap map, Collection excludedEntities)
          Creates and initializes new DbGenerator instance.
DbGenerator(DbAdapter adapter, DataMap map, Collection excludedEntities, DataDomain domain)
          Creates and initializes new DbGenerator instance.
 

Uses of DataMap in org.apache.cayenne.conf
 

Methods in org.apache.cayenne.conf that return DataMap
protected  DataMap RuntimeLoadDelegate.findMap(String domainName, String mapName)
           
protected  DataMap RuntimeLoadDelegate.loadDataMap(DataDomain domain, String mapName, Map locations)
          Returns DataMap for the name and location information.
 

Uses of DataMap in org.apache.cayenne.gen
 

Fields in org.apache.cayenne.gen declared as DataMap
protected  DataMap MapClassGenerator.dataMap
           
protected  DataMap EntityUtils.primaryDataMap
           
 

Methods in org.apache.cayenne.gen that return DataMap
 DataMap MapClassGenerator.getDataMap()
           
 DataMap EntityUtils.getPrimaryDataMap()
           
 

Methods in org.apache.cayenne.gen with parameters of type DataMap
 void ClassGenerator.generateClass(Writer out, DataMap dataMap, ObjEntity entity, String fqnBaseClass, String fqnSuperClass, String fqnSubClass)
          Generates Java code for the ObjEntity.
 void MapClassGenerator.setDataMap(DataMap dataMap)
           
 

Constructors in org.apache.cayenne.gen with parameters of type DataMap
DefaultClassGenerator(DataMap dataMap)
          Creates class generator and initializes it with DataMap.
DefaultClassGenerator(DataMap dataMap, List selectedObjEntities)
          Creates class generator and initializes it with the list of ObjEntities that will be used in class generation.
EntityUtils(DataMap dataMap, ObjEntity objEntity, String fqnBaseClass, String fqnSuperClass, String fqnSubClass)
           
MapClassGenerator(DataMap dataMap)
           
MapClassGenerator(DataMap dataMap, List objEntities)
          Creates a new MapClassGenerator.
 

Uses of DataMap in org.apache.cayenne.jpa
 

Methods in org.apache.cayenne.jpa with parameters of type DataMap
protected  void Provider.loadSchema(DataSource dataSource, DbAdapter adapter, DataMap map)
          Loads database schema if it doesn't yet exist.
 

Uses of DataMap in org.apache.cayenne.jpa.bridge
 

Fields in org.apache.cayenne.jpa.bridge declared as DataMap
protected  DataMap JpaIndirectQuery.parentMap
           
 

Methods in org.apache.cayenne.jpa.bridge that return DataMap
 DataMap JpaIndirectQuery.getParentMap()
           
 DataMap DataMapConverter.toDataMap(String name, EntityMapLoaderContext context)
           
 

Methods in org.apache.cayenne.jpa.bridge with parameters of type DataMap
 void JpaIndirectQuery.setParentMap(DataMap parentMap)
           
 

Uses of DataMap in org.apache.cayenne.map
 

Fields in org.apache.cayenne.map declared as DataMap
protected  DataMap Entity.dataMap
           
protected  DataMap Procedure.dataMap
           
protected  DataMap QueryBuilder.dataMap
           
 

Methods in org.apache.cayenne.map that return DataMap
 DataMap DataMap.getClientDataMap(EntityResolver serverResolver)
          Returns a DataMap stripped of any server-side information, such as DbEntity mapping, or ObjEntities that are not allowed in the client tier.
 DataMap Entity.getDataMap()
           
 DataMap Procedure.getDataMap()
           
 DataMap EntityResolver.getDataMap(String mapName)
          Returns a DataMap matching the name.
 DataMap MapLoader.loadDataMap(InputSource src)
          Loads a DataMap from XML input source.
 DataMap MapLoader.loadDataMap(String uri)
          Loads DataMap from file specified by uri parameter.
 

Methods in org.apache.cayenne.map with parameters of type DataMap
 void EntityResolver.addDataMap(DataMap map)
           
 void DataMap.mergeWithDataMap(DataMap map)
          Adds all Object and DB entities and Queries from another map to this map.
 void EntityResolver.removeDataMap(DataMap map)
           
 void Entity.setDataMap(DataMap dataMap)
          Sets parent DataMap of this entity.
 void Procedure.setDataMap(DataMap dataMap)
          Sets parent DataMap of this entity.
 void QueryBuilder.setRoot(DataMap dataMap, String rootType, String rootName)
          Sets the information pertaining to the root of the query.
 

Uses of DataMap in org.apache.cayenne.map.event
 

Fields in org.apache.cayenne.map.event declared as DataMap
protected  DataMap DataMapEvent.dataMap
           
 

Methods in org.apache.cayenne.map.event that return DataMap
 DataMap DataMapEvent.getDataMap()
          Returns DataMap associated with this event.
 

Methods in org.apache.cayenne.map.event with parameters of type DataMap
 void DataMapEvent.setDataMap(DataMap dataMap)
          Sets DataMap associated with this event.
 

Constructors in org.apache.cayenne.map.event with parameters of type DataMap
DataMapEvent(Object src, DataMap dataMap)
          Creates a DataMap change event.
DataMapEvent(Object src, DataMap dataMap, int id)
          Creates a DataMap event of a specified type.
DataMapEvent(Object src, DataMap dataMap, String oldName)
          Creates a DataMap name change event.
 

Uses of DataMap in org.apache.cayenne.project
 

Fields in org.apache.cayenne.project declared as DataMap
protected  DataMap DataMapFile.map
           
protected  DataMap DataMapProject.map
           
 

Constructors in org.apache.cayenne.project with parameters of type DataMap
DataMapFile(Project project, DataMap map)
          Constructor for DataMapFile.
 

Uses of DataMap in org.apache.cayenne.project.validator
 

Methods in org.apache.cayenne.project.validator with parameters of type DataMap
protected  void DataMapValidator.validateName(DataMap map, ProjectPath path, Validator validator)
           
protected  void DataMapValidator.validateNodeLinks(DataMap map, ProjectPath path, Validator validator)
           
 

Uses of DataMap in org.apache.cayenne.query
 

Methods in org.apache.cayenne.query that return DataMap
 DataMap QueryMetadata.getDataMap()
          Returns a DataMap associated with a query or null if no such DataMap exists.
 

Methods in org.apache.cayenne.query with parameters of type DataMap
 QueryEngine QueryRouter.engineForDataMap(DataMap map)
          Returns a QueryEngine that is configured to handle a given DataMap.
 

Constructors in org.apache.cayenne.query with parameters of type DataMap
SQLTemplate(DataMap rootMap, String defaultTemplate)
           
 

Uses of DataMap in org.apache.cayenne.tools
 

Methods in org.apache.cayenne.tools that return DataMap
protected  DataMap DbGeneratorTask.loadDataMap()
          Loads and returns DataMap based on map attribute.
 

Uses of DataMap in org.apache.cayenne.util
 

Fields in org.apache.cayenne.util declared as DataMap
protected  DataMap EntityMergeSupport.map
           
 

Methods in org.apache.cayenne.util that return DataMap
 DataMap EntityMergeSupport.getMap()
           
 

Methods in org.apache.cayenne.util with parameters of type DataMap
 void EntityMergeSupport.setMap(DataMap map)
           
 

Constructors in org.apache.cayenne.util with parameters of type DataMap
EntityMergeSupport(DataMap map)
           
 

Uses of DataMap in org.apache.cayenne.wocompat
 

Fields in org.apache.cayenne.wocompat declared as DataMap
protected  DataMap EOModelHelper.dataMap
           
 

Methods in org.apache.cayenne.wocompat that return DataMap
 DataMap EOModelHelper.getDataMap()
          Returns a DataMap associated with this helper.
 DataMap EOModelProcessor.loadEOModel(String path)
          Performs EOModel loading.
 DataMap EOModelProcessor.loadEOModel(String path, boolean generateClientClass)
          Performs EOModel loading.
 



Copyright © 2001-2007 Apache Cayenne. All Rights Reserved.