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 NetBeans. The Initial Developer of the Original
 * Code is Sun Microsystems, Inc. Portions Copyright 1997-2004 Sun
 * Microsystems, Inc. All Rights Reserved.
 */

package org.netbeans.modules.java.ui.nodes.elements;

import java.lang.reflect.Modifier;
import java.lang.reflect.InvocationTargetException;
import java.util.Map;
import java.util.HashMap;

import org.openide.nodes.*;
import org.openide.ErrorManager;
import org.openide.src.ElementProperties;
import org.openide.util.NbBundle;
import org.netbeans.jmi.javamodel.*;
import org.netbeans.modules.javacore.internalapi.JavaMetamodel;

import javax.jmi.reflect.JmiException;

/** Node representing a field (variable).
* @see org.netbeans.jmi.javamodel.Field
* @author Petr Hamernik, Jan Pokorsky
 * 
 * XXX help ids
*/
public final class FieldNode extends ElementNode {

    private static final Map mapAttributeName;
    
    static {
        mapAttributeName = new HashMap();
        mapAttributeName.put(PROP_MODIFIERS, PROP_MODIFIERS);
        mapAttributeName.put(ElementProperties.PROP_NAME, ElementProperties.PROP_NAME);
        mapAttributeName.put("typeName", PROP_TYPE); // NOI18N
        mapAttributeName.put("initialValueText", PROP_INIT_VALUE); // NOI18N
    }
    
    /** Create a new field node.
    * @param element field element to represent
    * @param writeable true to be writable
    */
    public FieldNode(Field element, boolean writeable) {
        super(element, Children.LEAF, writeable, SourceOptions.PROP_FIELD_FORMAT);
        setElementFormat0(getElementFormatProperty());
        superSetName(element.getName());
    }

    /* Resolve the current icon base.
    * @return icon base string.
    */
    protected String resolveIconBase() {
        int modif = getField().getModifiers();
        if (!Modifier.isStatic(modif)) {
            // non-static field...
            if (Modifier.isPrivate(modif))
                return FIELD_PRIVATE;
            else if (Modifier.isProtected(modif))
                return FIELD_PROTECTED;
            else if (Modifier.isPublic(modif))
                return FIELD_PUBLIC;
            else
                return FIELD_PACKAGE;
        }
        else {
            // static field...
            if (Modifier.isPrivate(modif))
                return FIELD_ST_PRIVATE;
            else if (Modifier.isProtected(modif))
                return FIELD_ST_PROTECTED;
            else if (Modifier.isPublic(modif))
                return FIELD_ST_PUBLIC;
            else
                return FIELD_ST_PACKAGE;
        }
    }

    protected ElementFormat getElementFormatProperty() {
        return getSourceOptions().getFieldElementFormat();
    }

    /* This method resolve the appropriate hint format for the type
    * of the element. It defines the short description.
    */
    protected ElementFormat getHintElementFormat() {
        return getSourceOptions().getFieldElementLongFormat();
    }

    protected Map getAttributeNameMap() {
        return mapAttributeName;
    }

    /* Creates property set for this node */
    protected Sheet createSheet () {
        Sheet sheet = Sheet.createDefault();
        Sheet.Set ps = sheet.get(Sheet.PROPERTIES);
        ps.put(createModifiersProperty(writeable));
        ps.put(createNameProperty(getField()));
        ps.put(createTypeProperty(writeable));
        ps.put(createInitValueProperty(writeable));
        return sheet;
    }

    /** Create a property for the field type.
    * @param canW false to force property to be read-only
    * @return the property
    */
    protected Node.Property createTypeProperty(boolean canW) {
        Node.Property prop = createTypeProperty(PROP_TYPE, getField(), canW);
        prop.setValue("acceptVoidType", Boolean.FALSE); // NOI18N
        return prop;
    }

    /** Create a property for the field init value.
    * @param canW false to force property to be read-only
    * @return the property
    */
    protected Node.Property createInitValueProperty(boolean canW) {
        return new ElementNode.ElementProp(PROP_INIT_VALUE, String.class, canW) {

            public Object getValue () {
                String val = getField().getInitialValueText(); 
                return val != null? val: ""; // NOI18N
            }
            
            /** Sets the value */
            public void setValue(final Object val) throws IllegalArgumentException,
                   IllegalAccessException, InvocationTargetException {
               
                super.setValue(val);
                if (!(val instanceof String)) throw new IllegalArgumentException();
                
                boolean fail = true;
                try {
                    JavaMetamodel.getDefaultRepository().beginTrans(true);
                    try {
                        getField().setInitialValueText((String) val);
                        fail = false;
                    } finally {
                        JavaMetamodel.getDefaultRepository().endTrans(fail);
                    }
                } catch (JmiException e) {
                    IllegalArgumentException iae = new IllegalArgumentException();
                    iae.initCause(e);
                    ErrorManager.getDefault().annotate(iae, ErrorManager.USER, null,
                            NbBundle.getMessage(FieldNode.class, "MSG_InvalidInitVal"), null, null); // NOI18N
                    throw iae;
                }
            }
        };
    }
    
    private Field getField() {
        return (Field) this.element;
    }

}
... 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.