|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
public interface IProjectDescription
A project description contains the meta-data required to define a project. In effect, a project description is a project's "content".
Field Summary | |
---|---|
static java.lang.String |
DESCRIPTION_FILE_NAME
Constant that denotes the name of the project description file (value ".project" ). |
Method Summary | |
---|---|
ICommand[] |
getBuildSpec()
Returns the list of build commands to run when building the described project. |
java.lang.String |
getComment()
Returns the descriptive comment for the described project. |
IProject[] |
getDynamicReferences()
Returns the dynamic project references for the described project. |
org.eclipse.core.runtime.IPath |
getLocation()
Deprecated. Since 3.2, project locations are not necessarily in the local file system. The more general getLocationURI() method should be used instead. |
java.net.URI |
getLocationURI()
Returns the location URI for the described project. |
java.lang.String |
getName()
Returns the name of the described project. |
java.lang.String[] |
getNatureIds()
Returns the list of natures associated with the described project. |
IProject[] |
getReferencedProjects()
Returns the projects referenced by the described project. |
boolean |
hasNature(java.lang.String natureId)
Returns whether the project nature specified by the given nature extension id has been added to the described project. |
ICommand |
newCommand()
Returns a new build command. |
void |
setBuildSpec(ICommand[] buildSpec)
Sets the list of build command to run when building the described project. |
void |
setComment(java.lang.String comment)
Sets the comment for the described project. |
void |
setDynamicReferences(IProject[] projects)
Sets the dynamic project references for the described project. |
void |
setLocation(org.eclipse.core.runtime.IPath location)
Sets the local file system location for the described project. |
void |
setLocationURI(java.net.URI location)
Sets the location for the described project. |
void |
setName(java.lang.String projectName)
Sets the name of the described project. |
void |
setNatureIds(java.lang.String[] natures)
Sets the list of natures associated with the described project. |
void |
setReferencedProjects(IProject[] projects)
Sets the referenced projects, ignoring any duplicates. |
Field Detail |
---|
static final java.lang.String DESCRIPTION_FILE_NAME
".project"
).
The handle of a project's description file is
project.getFile(DESCRIPTION_FILE_NAME)
.
The project description file is located in the root of the project's content area.
Method Detail |
---|
ICommand[] getBuildSpec()
java.lang.String getComment()
IProject[] getDynamicReferences()
The returned projects need not exist in the workspace. The result will not contain duplicates. Returns an empty array if there are no dynamic project references on this description.
getReferencedProjects()
,
setDynamicReferences(IProject[])
org.eclipse.core.runtime.IPath getLocation()
getLocationURI()
method should be used instead.
null
is
returned if the default location should be used. This method will return
null
if this project is not located in the local file system.
null
java.net.URI getLocationURI()
null
is
returned if the default location should be used.
null
setLocationURI(URI)
java.lang.String getName()
java.lang.String[] getNatureIds()
setNatureIds(String[])
IProject[] getReferencedProjects()
The projects need not exist in the workspace. The result will not contain duplicates. Returns an empty array if there are no referenced projects on this description.
getDynamicReferences()
boolean hasNature(java.lang.String natureId)
natureId
- the nature extension identifier
true
if the described project has the given natureICommand newCommand()
Note that the new command does not become part of this project
description's build spec until it is installed via the setBuildSpec
method.
setBuildSpec(ICommand[])
void setBuildSpec(ICommand[] buildSpec)
Users must call IProject.setDescription(IProjectDescription, int, IProgressMonitor)
before changes made to this description take effect.
buildSpec
- the array of build commands to runIProject.setDescription(IProjectDescription, int, IProgressMonitor)
,
getBuildSpec()
,
newCommand()
void setComment(java.lang.String comment)
Users must call IProject.setDescription(IProjectDescription, int, IProgressMonitor)
before changes made to this description take effect.
comment
- the comment for the described projectIProject.setDescription(IProjectDescription, int, IProgressMonitor)
,
getComment()
void setDynamicReferences(IProject[] projects)
Users must call IProject.setDescription(IProjectDescription, int, IProgressMonitor)
before changes made to this description take effect.
projects
- list of projectsgetDynamicReferences()
,
IProject.setDescription(IProjectDescription, int, IProgressMonitor)
void setLocation(org.eclipse.core.runtime.IPath location)
null
is specified, the default location is used.
Setting the location on a description for a project which already
exists has no effect; the new project location is ignored when the
description is set on the already existing project. This method is
intended for use on descriptions for new projects or for destination
projects for copy
and move
.
This operation maps the root folder of the project to the exact location provided. For example, if the location for project named "P" is set to the path c:\my_plugins\Project1, the file resource at workspace path /P/index.html would be stored in the local file system at c:\my_plugins\Project1\index.html.
location
- the location for the described project or null
getLocation()
void setLocationURI(java.net.URI location)
null
is specified, the default location is used.
Setting the location on a description for a project which already
exists has no effect; the new project location is ignored when the
description is set on the already existing project. This method is
intended for use on descriptions for new projects or for destination
projects for copy
and move
.
This operation maps the root folder of the project to the exact location provided. For example, if the location for project named "P" is set to the URI file://c:/my_plugins/Project1, the file resource at workspace path /P/index.html would be stored in the local file system at file://c:/my_plugins/Project1/index.html.
location
- the location for the described project or null
getLocationURI()
,
IWorkspace.validateProjectLocationURI(IProject, URI)
void setName(java.lang.String projectName)
Setting the name on a description and then setting the description on the project has no effect; the new name is ignored.
Creating a new project with a description name which doesn't match the project handle name results in the description name being ignored; the project will be created using the name in the handle.
projectName
- the name of the described projectIProject.setDescription(IProjectDescription, int, IProgressMonitor)
,
getName()
void setNatureIds(java.lang.String[] natures)
Users must call IProject.setDescription(IProjectDescription, int, IProgressMonitor)
before changes made to this description take effect.
natures
- the list of naturesIProject.setDescription(IProjectDescription, int, IProgressMonitor)
,
getNatureIds()
void setReferencedProjects(IProject[] projects)
Users must call IProject.setDescription(IProjectDescription, int, IProgressMonitor)
before changes made to this description take effect.
projects
- a list of projectsIProject.setDescription(IProjectDescription, int, IProgressMonitor)
,
getReferencedProjects()
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |