Eclipse Platform
2.0

org.eclipse.core.resources
Interface IProjectDescription


public interface IProjectDescription

A project description contains the metadata required to define a project. In effect, a project description is a project's "content".

This interface is not intended to be implemented by clients.


Field Summary
static String DESCRIPTION_FILE_NAME
          Constant 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.
 String getComment()
          Returns the descriptive comment for the described project.
 IPath getLocation()
          Returns the local file system location for the described project.
 String getName()
          Returns the name of the described project.
 String[] getNatureIds()
          Returns the list of natures associated with the described project.
 IProject[] getReferencedProjects()
          Returns the projects referenced by the described project.
 boolean hasNature(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(String comment)
          Sets the comment for the described project
 void setLocation(IPath location)
          Sets the local file system location for the described project.
 void setName(String projectName)
          Sets the name of the described project
 void setNatureIds(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

DESCRIPTION_FILE_NAME

public static final String DESCRIPTION_FILE_NAME
Constant name of the project description file (value ".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.

Since:
2.0
See Also:
Constant Field Values
Method Detail

getBuildSpec

public ICommand[] getBuildSpec()
Returns the list of build commands to run when building the described project. The commands are listed in the order in which they are to be run.

Returns:
the list of build commands for the described project

getComment

public String getComment()
Returns the descriptive comment for the described project.

Returns:
the comment for the described project

getLocation

public IPath getLocation()
Returns the local file system location for the described project. null is returned if the default location should be used.

Returns:
the location for the described project or null

getName

public String getName()
Returns the name of the described project.

Returns:
the name of the described project

getNatureIds

public String[] getNatureIds()
Returns the list of natures associated with the described project. Returns an empty array if there are no natures on this description.

Returns:
the list of natures for the described project
See Also:
setNatureIds(java.lang.String[])

getReferencedProjects

public IProject[] getReferencedProjects()
Returns the projects referenced by the described project. 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.

Returns:
a list of projects

hasNature

public boolean hasNature(String natureId)
Returns whether the project nature specified by the given nature extension id has been added to the described project.

Parameters:
natureId - the nature extension identifier
Returns:
true if the described project has the given nature

newCommand

public ICommand newCommand()
Returns a new build command.

Note that the new command does not become part of this project description's build spec until it is installed via the setBuildSpec method.

Returns:
a new command
See Also:
setBuildSpec(org.eclipse.core.resources.ICommand[])

setBuildSpec

public void setBuildSpec(ICommand[] buildSpec)
Sets the list of build command to run when building the described project.

Users must call IProject.setDescription before changes made to this description take effect.

Parameters:
buildSpec - the array of build commands to run
See Also:
IProject.setDescription(org.eclipse.core.resources.IProjectDescription, org.eclipse.core.runtime.IProgressMonitor), getBuildSpec(), newCommand()

setComment

public void setComment(String comment)
Sets the comment for the described project

Users must call IProject.setDescription before changes made to this description take effect.

Parameters:
comment - the comment for the described project
See Also:
IProject.setDescription(org.eclipse.core.resources.IProjectDescription, org.eclipse.core.runtime.IProgressMonitor), getComment()

setLocation

public void setLocation(IPath location)
Sets the local file system location for the described project. If 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.

Parameters:
location - the location for the described project or null
See Also:
getLocation()

setName

public void setName(String projectName)
Sets the name of the described project

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 creating using the name in the handle.

Parameters:
projectName - the name of the described project
See Also:
IProject.setDescription(org.eclipse.core.resources.IProjectDescription, org.eclipse.core.runtime.IProgressMonitor), getName()

setNatureIds

public void setNatureIds(String[] natures)
Sets the list of natures associated with the described project. A project created with this description will have these natures added to it in the given order.

Users must call IProject.setDescription before changes made to this description take effect.

Parameters:
natures - the list of natures
See Also:
IProject.setDescription(org.eclipse.core.resources.IProjectDescription, org.eclipse.core.runtime.IProgressMonitor), getNatureIds()

setReferencedProjects

public void setReferencedProjects(IProject[] projects)
Sets the referenced projects, ignoring any duplicates. The order of projects is preserved. The projects need not exist in the workspace.

Users must call IProject.setDescription before changes made to this description take effect.

Parameters:
projects - a list of projects
See Also:
IProject.setDescription(org.eclipse.core.resources.IProjectDescription, org.eclipse.core.runtime.IProgressMonitor), getReferencedProjects()

Eclipse Platform
2.0

Copyright (c) IBM Corp. and others 2000, 2002. All Rights Reserved.