blob: ea1107b66eed28b48c89cd716e6fbdd3576a8434 [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.jdt.jeview.properties;
import java.util.ArrayList;
import org.eclipse.ui.views.properties.IPropertyDescriptor;
import org.eclipse.ui.views.properties.IPropertySource;
import org.eclipse.ui.views.properties.PropertyDescriptor;
import org.eclipse.jdt.core.IJarEntryResource;
public class JarEntryResourceProperties implements IPropertySource {
private static final String C_JAR_ENTRY_RESOURCE= "IJarEntryResource";
private static final String P_NAME= "org.eclipse.jdt.jeview.IJarEntryResource.name";
private static final String P_FULL_PATH= "org.eclipse.jdt.jeview.IJarEntryResource.fullPath";
private static final String P_IS_FILE= "org.eclipse.jdt.jeview.IJarEntryResource.isFile";
private static final String P_IS_READ_ONLY= "org.eclipse.jdt.jeview.IJarEntryResource.isReadOnly";
protected IJarEntryResource fJarEntryResource;
private static final ArrayList<IPropertyDescriptor> JAR_ENTRY_RESOURCE_PROPERTY_DESCRIPTORS= new ArrayList<IPropertyDescriptor>();
static {
addResourceDescriptor(new PropertyDescriptor(P_NAME, "name"));
addResourceDescriptor(new PropertyDescriptor(P_FULL_PATH, "fullPath"));
addResourceDescriptor(new PropertyDescriptor(P_IS_FILE, "isFile"));
addResourceDescriptor(new PropertyDescriptor(P_IS_READ_ONLY, "isReadOnly"));
}
private static void addResourceDescriptor(PropertyDescriptor descriptor) {
descriptor.setAlwaysIncompatible(true);
descriptor.setCategory(C_JAR_ENTRY_RESOURCE);
JAR_ENTRY_RESOURCE_PROPERTY_DESCRIPTORS.add(descriptor);
}
public JarEntryResourceProperties(IJarEntryResource jarEntryResource) {
fJarEntryResource= jarEntryResource;
}
public IPropertyDescriptor[] getPropertyDescriptors() {
ArrayList<IPropertyDescriptor> result= new ArrayList<IPropertyDescriptor>(JAR_ENTRY_RESOURCE_PROPERTY_DESCRIPTORS);
return result.toArray(new IPropertyDescriptor[result.size()]);
}
public Object getPropertyValue(Object name) {
if (name.equals(P_NAME)) {
return fJarEntryResource.getName();
} else if (name.equals(P_FULL_PATH)) {
return fJarEntryResource.getFullPath();
} else if (name.equals(P_IS_FILE)) {
return fJarEntryResource.isFile();
} else if (name.equals(P_IS_READ_ONLY)) {
return fJarEntryResource.isReadOnly();
}
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
}
}