blob: 7c6a18175cf16eec19fa9157da8e4c98317b89fd [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
*/
package org.netbeans.modules.properties;
import java.beans.PropertyChangeEvent;
import java.beans.PropertyChangeListener;
import java.io.IOException;
import java.lang.reflect.InvocationTargetException;
import javax.swing.Action;
import org.openide.loaders.DataObject;
import org.openide.nodes.*;
import org.openide.util.actions.SystemAction;
import org.openide.util.NbBundle;
import org.openide.util.WeakListeners;
/**
* Standard node representing a <code>PresentableFileEntry</code>.
*
* @see PresentableFileEntry
* @author Petr Jiricka
*/
public class FileEntryNode extends AbstractNode {
/** generated Serialized Version UID */
static final long serialVersionUID = -7882925922830244768L;
/** FileEntry of this node. */
private PresentableFileEntry entry;
/**
* Creates a data node for a given file entry.
* The provided children object will be used to hold all child nodes.
*
* @param entry entry to work with
* @param ch children container for the node
*/
public FileEntryNode (PresentableFileEntry entry, Children ch) {
super(ch);
this.entry = entry;
PropL propListener = new PropL ();
entry.addPropertyChangeListener(
WeakListeners.propertyChange(propListener, entry));
entry.getDataObject().addPropertyChangeListener (propListener);
super.setName (entry.getName ());
}
private String getBundleString(String s){
return NbBundle.getMessage(FileEntryNode.class, s);
}
/**
* Get a cookie. Delegated to {@link PresentableFileEntry#getCookie}. is
* @return the cookie or <code>null</code>
*/
public <T extends Node.Cookie> T getCookie(Class<T> cl) {
T c = entry.getCookie(cl);
if (c != null) {
return c;
} else {
return super.getCookie (cl);
}
}
/** Gets the represented entry.
* @return the entry
*/
public PresentableFileEntry getFileEntry() {
return entry;
}
/** Indicate whether the node may be destroyed.
* @return tests {@link DataObject#isDeleteAllowed}
*/
public boolean canDestroy () {
return entry.isDeleteAllowed ();
}
/** Destroyes the node. */
public void destroy () throws IOException {
entry.delete ();
super.destroy ();
}
/**
* @return true if this node allows copying.
*/
public final boolean canCopy () {
return entry.isCopyAllowed ();
}
/**
* @return true if this node allows cutting.
*/
public final boolean canCut () {
return entry.isMoveAllowed ();
}
/** Rename the data object.
* @param name new name for the object
* @exception IllegalArgumentException if the rename failed
*/
public void setName (String name) {
try {
entry.renameEntry (name);
super.setName (name);
} catch (IOException ex) {
throw new IllegalArgumentException (ex.getMessage ());
}
}
/** Gets default action.
* @deprecated
* @return no action if the underlying entry is a template. Otherwise the abstract node's default action is returned, possibly <code>null</code>.
*/
public SystemAction getDefaultAction () {
if (entry.isTemplate ()) {
return null;
} else {
Action a = getPreferredAction();
if(a instanceof SystemAction){
return (SystemAction) a;
} else {
return null;
}
}
}
/** Gets default action.
* @return no action if the underlying entry is a template. Otherwise the abstract node's default action is returned, possibly <code>null</code>.
*/
public Action getPreferredAction() {
if (entry.isTemplate ()) {
return null;
} else {
return super.getPreferredAction();
}
}
/** Initializes sheet of properties. Allows subclasses to
* overwrite it.
* @return the default sheet to use
*/
protected Sheet createSheet () {
Sheet s = Sheet.createDefault ();
Sheet.Set ss = s.get (Sheet.PROPERTIES);
Node.Property p;
p = new PropertySupport.ReadWrite<String>(
PROP_NAME,
String.class,
getBundleString("PROP_name"),
getBundleString("HINT_name")
) {
public String getValue() {
return entry.getName();
}
public void setValue(String val) throws IllegalAccessException,
IllegalArgumentException, InvocationTargetException {
if (!canWrite()) {
throw new IllegalAccessException();
}
FileEntryNode.this.setName(val);
}
public boolean canWrite () {
return entry.isRenameAllowed();
}
};
p.setName (DataObject.PROP_NAME);
ss.put (p);
try {
p = new PropertySupport.Reflection<Boolean>(
entry, Boolean.TYPE, "isTemplate", "setTemplate" // NOI18N
);
p.setName (DataObject.PROP_TEMPLATE);
p.setDisplayName (getBundleString("PROP_template"));
p.setShortDescription (getBundleString("HINT_template"));
ss.put (p);
} catch(Exception ex) {
throw new IllegalStateException();
}
return s;
}
/**
* Support for firing property change.
*
* @param ev event describing the change
*/
void fireChange (PropertyChangeEvent ev) {
String propertyName = ev.getPropertyName();
if (propertyName.equals(Node.PROP_COOKIE)) {
fireCookieChange();
return;
}
// dataobject may have a property that this node does not have
if (hasProperty(propertyName)) {
firePropertyChange(propertyName, ev.getOldValue(), ev.getNewValue());
}
if (propertyName.equals(DataObject.PROP_NAME)) {
super.setName (entry.getName ());
}
}
private boolean hasProperty(String name) {
Node.PropertySet[] npsets = getPropertySets();
for (int i = 0; i < npsets.length; i++) {
Node.PropertySet npset = npsets[i];
Node.Property[] nps = npset.getProperties();
for (int j = 0; j < nps.length; j++) {
Node.Property np = nps[j];
if (name.equals(np.getName())) return true;
}
}
return false;
}
/** Property listener on data object that delegates all changes of
* properties to this node.
*/
private class PropL extends Object implements PropertyChangeListener {
public void propertyChange (PropertyChangeEvent ev) {
fireChange (ev);
}
}
}