oracle.toplink.tools.builderreader
Class ProjectReader
java.lang.Object
|
+--oracle.toplink.sessions.Project
|
+--oracle.toplink.tools.builderreader.ProjectReader
- All Implemented Interfaces:
- java.lang.Cloneable, java.io.Serializable
Deprecated. replaced by oracle.toplink.tools.workbench.XMLProjectReader
- public class ProjectReader
- extends Project
- implements java.io.Serializable
OBSOLETE: This class has been replaced by the XMLProjectReader.
- See Also:
- Serialized Form
Type | Method |
java.util.Vector |
getSearchPath()
Deprecated. |
TableCreator |
getTableCreator()
Deprecated. PUBLIC:
Return the table creator for the project. |
static ProjectReader |
read(ProjectReadSpecification projectSpec)
Deprecated. PUBLIC:
This method can be used if the other two read methods do not meet your needs. |
static ProjectReader |
read(java.lang.String projectPath)
Deprecated. PUBLIC:
Given a source string which could be a file name, URL, or URL like method name
a project will be read and constructed. |
Methods inherited from class oracle.toplink.sessions.Project |
addDefaultReadOnlyClass, addDescriptors,
assumeExistenceForDoesExist, checkCacheForDoesExist, checkDatabaseForDoesExist,
createDatabaseSession, createServerSession, createServerSession,
createServerSession, getDefaultReadOnlyClasses, getDescriptors,
getLogin, getName, setDefaultReadOnlyClasses,
setLogin, setName, useCacheIdentityMap,
useCacheIdentityMap, useFullIdentityMap, useFullIdentityMap,
useNoIdentityMap, useSoftCacheWeakIdentityMap, useSoftCacheWeakIdentityMap,
useWeakIdentityMap, useWeakIdentityMap |
Methods inherited from class java.lang.Object |
equals, getClass, hashCode, notify, notifyAll, wait, wait, wait |
shouldApplyAmendmentMethods
public static boolean shouldApplyAmendmentMethods
- Deprecated.
ProjectReader
public ProjectReader()
- Deprecated.
- New ProjectsReaders should only be created by the static read methods.
- See Also:
read(String)
ProjectReader
public ProjectReader(DatabaseLogin login)
- Deprecated.
getSearchPath
public java.util.Vector getSearchPath()
- Deprecated.
getTableCreator
public TableCreator getTableCreator()
- Deprecated.
- PUBLIC:
Return the table creator for the project.
The table creator can be used to create tables.
read
public static ProjectReader read(java.lang.String projectPath)
throws BuilderException
- Deprecated.
- PUBLIC:
Given a source string which could be a file name, URL, or URL like method name
a project will be read and constructed. Only descriptors will be read in when
using this method. If you wish to read in table files, use:
read(ProjectReadSpecification)
or
read(String, boolean, boolean)
- Parameters:
projectPath
- String full or relative path to find Project's INI file- See Also:
read
public static ProjectReader read(ProjectReadSpecification projectSpec)
throws BuilderException
- Deprecated.
- PUBLIC:
This method can be used if the other two read methods do not meet your needs.
Given a project read specification, a Project will be read in and created from
the .project file.
- Parameters:
projectSpec
- ProjectReadSpecification full or relative path to find Project's INI file- See Also: