return false;
}
public IResourceType createAdapter(Object adaptableObject, Class adapterType) {
IProject project = (IProject) adaptableObject;
Nature nature = (Nature) WOLipsNatureUtils.getNature(project);
if (nature == null) {
return null;
} else if (adapterType == ProjectAdapter.class) {
return new ProjectAdapter(project, nature.isFramework());
} else if (adapterType == IProjectPatternsets.class) {
ProjectPatternsets projectPatternSets = _projectPatternSets.get(adaptableObject);
if (projectPatternSets == null) {
projectPatternSets = new ProjectPatternsets(project);
_projectPatternSets.put(adaptableObject, projectPatternSets);