Project Sets

This extension point is deprecated

Identifier:
org.eclipse.team.core.projectSets

Since:
2.0

Description:
This extension point is used to register a handler for creating and reading project sets. Project sets are lightweight, portable method of sharing a particular lineup of team-shared projects in a workspace. A project set file may be used to provide team memebers with a simple way of creating a workspace with a particular lineup of projects form one or more team providers. Providers may provide an extension for this extension point.

deprecated: see org.eclipse.team.core.RepositoryProviderType#getProjectSetCapability

Configuration Markup:

<!ELEMENT extension (projectSets*)>

<!ATTLIST extension

point CDATA #REQUIRED

id    CDATA #IMPLIED>


<!ELEMENT projectSets EMPTY>

<!ATTLIST projectSets

id    CDATA #REQUIRED

class CDATA #REQUIRED>


Examples:
Following is an example of a projectSets extension:


 <extension point="org.eclipse.team.core.projectSets">
  <projectSets
   id="org.eclipse.team.cvs.core.cvsnature"
   class="org.eclipse.team.cvs.core.CVSProjectSetSerializer">
  </projectSets>
 </extension>


Copyright (c) 2004, 2008 IBM Corporation and others. This program and the accompanying materials are made available under the terms of the Eclipse Public License 2.0 which accompanies this distribution, and is available at https://www.eclipse.org/legal/epl-v20.html/ SPDX-License-Identifier: EPL-2.0