blob: ffcf09d7be1ab5ae483e06b770b40c12d5c970b6 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2005 IBM Corporation and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* IBM Corporation - initial API and implementation
*******************************************************************************/
package org.eclipse.wst.jsdt.jseview.properties;
import java.util.ArrayList;
import org.eclipse.core.resources.IResource;
import org.eclipse.ui.views.properties.IPropertyDescriptor;
import org.eclipse.ui.views.properties.IPropertySource;
import org.eclipse.ui.views.properties.PropertyDescriptor;
public class ResourceProperties implements IPropertySource {
private static final String C_RESOURCE= "IResource";
private static final String P_NAME= "org.eclipse.wst.jsdt.jseview.IResource.name";
private static final String P_FULL_PATH= "org.eclipse.wst.jsdt.jseview.IResource.fullPath";
private static final String P_LOCATION= "org.eclipse.wst.jsdt.jseview.IResource.location";
private static final String P_PROJECT_RELATIVE_PATH= "org.eclipse.wst.jsdt.jseview.IResource.projectRelativePath";
private static final String P_RAW_LOCATION= "org.eclipse.wst.jsdt.jseview.IResource.rawLocation";
private static final String P_LOCAL_TIME_STAMP= "org.eclipse.wst.jsdt.jseview.IResource.localTimeStamp";
private static final String P_MODIFICATION_STAMP= "org.eclipse.wst.jsdt.jseview.IResource.modificationStamp";
protected IResource fResource;
private static final ArrayList<IPropertyDescriptor> RESOURCE_PROPERTY_DESCRIPTORS= new ArrayList<IPropertyDescriptor>();
static {
addResourceDescriptor(new PropertyDescriptor(P_NAME, "name"));
addResourceDescriptor(new PropertyDescriptor(P_FULL_PATH, "fullPath"));
addResourceDescriptor(new PropertyDescriptor(P_LOCATION, "location"));
addResourceDescriptor(new PropertyDescriptor(P_PROJECT_RELATIVE_PATH, "projectRelativePath"));
addResourceDescriptor(new PropertyDescriptor(P_RAW_LOCATION, "rawLocation"));
addResourceDescriptor(new PropertyDescriptor(P_LOCAL_TIME_STAMP, "localTimeStamp"));
addResourceDescriptor(new PropertyDescriptor(P_MODIFICATION_STAMP, "modificationStamp"));
}
private static void addResourceDescriptor(PropertyDescriptor descriptor) {
descriptor.setAlwaysIncompatible(true);
descriptor.setCategory(C_RESOURCE);
RESOURCE_PROPERTY_DESCRIPTORS.add(descriptor);
}
public ResourceProperties(IResource resource) {
fResource= resource;
}
public IPropertyDescriptor[] getPropertyDescriptors() {
ArrayList<IPropertyDescriptor> result= new ArrayList<IPropertyDescriptor>(RESOURCE_PROPERTY_DESCRIPTORS);
// if (fJavaElement instanceof IMember)
// result.addAll(MEMBER_PROPERTY_DESCRIPTORS);
// if (fJavaElement instanceof IParent)
// result.addAll(PARENT_PROPERTY_DESCRIPTORS);
return result.toArray(new IPropertyDescriptor[result.size()]);
}
public Object getPropertyValue(Object name) {
if (name.equals(P_NAME)) {
return fResource.getName();
} else if (name.equals(P_FULL_PATH)) {
return fResource.getFullPath();
} else if (name.equals(P_LOCATION)) {
return fResource.getLocation();
} else if (name.equals(P_PROJECT_RELATIVE_PATH)) {
return fResource.getProjectRelativePath();
} else if (name.equals(P_RAW_LOCATION)) {
return fResource.getRawLocation();
} else if (name.equals(P_LOCAL_TIME_STAMP)) {
return fResource.getLocalTimeStamp();
} else if (name.equals(P_MODIFICATION_STAMP)) {
return fResource.getModificationStamp();
}
return null;
}
public void setPropertyValue(Object name, Object value) {
// do nothing
}
public Object getEditableValue() {
return this;
}
public boolean isPropertySet(Object property) {
return false;
}
public void resetPropertyValue(Object property) {
// do nothing
}
}