[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Newsgroup Home]
|
[news.eclipse.modeling.gmf] Re: New Project Action
|
- From: gil.hod@xxxxxxxxx (Gilod )
- Date: Mon, 6 Jul 2009 08:36:00 +0000 (UTC)
- Newsgroups: eclipse.modeling.gmf
- Organization: Eclipse
- User-agent: NewsPortal/0.36 (http://florian-amrhein.de/newsportal)
I found an extension that should help me with this custom project:
<extension
point="org.eclipse.team.core.projectSets">
<projectSets
class="testing.ProjectSetSerializer2"
id="TESTING.projectSets2">
</projectSets>
</extension>
And this is the class that was automatically created:
package testing;
import org.eclipse.core.resources.IProject;
import org.eclipse.core.runtime.IProgressMonitor;
import org.eclipse.team.core.IProjectSetSerializer;
import org.eclipse.team.core.TeamException;
public class ProjectSetSerializer2 implements IProjectSetSerializer {
@Override
public IProject[] addToWorkspace(String[] referenceStrings,
String filename, Object context, IProgressMonitor monitor)
throws TeamException {
// TODO Auto-generated method stub
return null;
}
@Override
public String[] asReference(IProject[] providerProjects, Object context,
IProgressMonitor monitor) throws TeamException {
// TODO Auto-generated method stub
return null;
}
}
How should I modify the code so it will create the 2 diagrams that I need
inside?
Thanks in advance!!!
Gilod