alvinalexander.com | career | drupal | java | mac | mysql | perl | scala | uml | unix  

What this is

This file is included in the DevDaily.com "Java Source Code Warehouse" project. The intent of this project is to help you "Learn Java by Example" TM.

Other links

The source code

/*
 *                 Sun Public License Notice
 * 
 * The contents of this file are subject to the Sun Public License
 * Version 1.0 (the "License"). You may not use this file except in
 * compliance with the License. A copy of the License is available at
 * http://www.sun.com/
 * 
 * The Original Code is Forte for Java, Community Edition. The Initial
 * Developer of the Original Code is Sun Microsystems, Inc. Portions
 * Copyright 1997-2002 Sun Microsystems, Inc. All Rights Reserved.
 */

package org.netbeans.modules.mdrxml.looks;

import java.awt.datatransfer.Transferable;
import java.awt.datatransfer.StringSelection;
import java.io.IOException;
import org.openide.nodes.*;
import org.openide.util.NbBundle;
import org.netbeans.api.looks.*;
import org.netbeans.spi.looks.*;
import xmlmodel.AttributeNode;

/**
 *
 * @author  Tomas Zezula
 */
public class AttributeNodeLook extends NodeLook {
    
    private static final String ICON = "org/netbeans/modules/mdrxml/resources/attributeNode";
    
    private static class ValueProperty extends PropertySupport.ReadWrite {
        
        private AttributeNode node;
        
        public ValueProperty (AttributeNode node) {
            super (NbBundle.getMessage(AttributeNodeLook.class,"TXT_Value"),String.class,NbBundle.getMessage(AttributeNodeLook.class,"TXT_Value"),NbBundle.getMessage(AttributeNodeLook.class,"TIP_Value"));
            this.node = node;
        }
        
        public Object getValue () {
            if (this.node != null)
                return this.node.getValue();
            else
                return null;
        }
        
        public void setValue (Object value) {
            if (value instanceof String && this.node != null)
                node.setValue ((String)value);
        }
    }
    
    /** Creates a new instance of AttributeNodeLook */
    public AttributeNodeLook() {
        super (NbBundle.getMessage (AttributeNodeLook.class, "TXT_AttributeNodeLook"));
    }
    
    public String iconBase (Look.NodeSubstitute substitute) {
        return ICON;
    }
    
    public Node.PropertySet[] getPropertySets (Look.NodeSubstitute substitute) {
        Node.PropertySet[] sets = super.getPropertySets (substitute);
        ((Sheet.Set)sets[0]).put ( new ValueProperty ((AttributeNode)substitute.getRepresentedObject()));
        return sets;
    }
    
    public Transferable clipboardCopy (Look.NodeSubstitute substitute) throws IOException {
        AttributeNode node = (AttributeNode) substitute.getRepresentedObject ();
        String str = node.getName () + " = " + node.getValue ();    //NOI18N
        return new StringSelection (str);
    }
    
}
... this post is sponsored by my books ...

#1 New Release!

FP Best Seller

 

new blog posts

 

Copyright 1998-2021 Alvin Alexander, alvinalexander.com
All Rights Reserved.

A percentage of advertising revenue from
pages under the /java/jwarehouse URI on this website is
paid back to open source projects.