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-2003 Sun
 * Microsystems, Inc. All Rights Reserved.
 */

package org.netbeans.modules.tasklist.core;

import org.openide.nodes.PropertySupport;

import java.beans.PropertyEditor;
import org.netbeans.modules.tasklist.client.SuggestionProperty;

/** 
 * Class holding column properties.
 * See debuggercore's TreeTableExplorerViewSupport.java 
 *
 * @author Tor Norbye
 * @author Tim Lebedkov
 */    
public class ColumnProperty extends PropertySupport.ReadOnly {
    /** Id of the column. Used such that with deserialization,
     * we can tell exactly which column you're referring to,
     * even if we've added and removed columns from the system.
     * (Could also store the column property name, but that's
     * more work and more data). */        
    public int uid; // Used to check equivalence in serialized data,
                    // so I don't have to store whole string names
    public int width;

    private Class propertyEditorClass;

    public ColumnProperty(
			  int uid,
			  SuggestionProperty prop,
			  boolean sortable,
			  boolean defaultVisiblity,
			  int width
			  ) {
      this(uid, prop.getID(), prop.getValueClass(), prop.getName(), prop.getHint(), sortable, defaultVisiblity, width);
    }

    public ColumnProperty(
			  int uid,
			  SuggestionProperty prop,
			  boolean sortable,
			  int width
			  ) {
      this(uid, prop.getID(),prop.getName(), prop.getHint(), sortable, width);
    }
			  


    // Used for non-treetable columns
    /** Construct a new property for a "table column" (e.g. not
     * the leftmost tree column)
     * @param uid UID of this column
     * @param name Property name
     * @param type Type of this property
     * @param displayName Name shown in the display
     * @param hint Tooltip for the property
     * @param sortable Whether or not this column is valid as a sort key
     * @param defaultVisibility Whether or not this column should be shown by
     * @param width Default width for the column
     * default */        
    public ColumnProperty(
        int uid,
        String name,
        Class type,
        String displayName,
        String hint,
        boolean sortable,
        boolean defaultVisibility,
        int width
    ) {
        super(name, type, displayName, hint);
        this.uid = uid;
        this.width = width;
        setValue("suppressCustomEditor", Boolean.TRUE);  // NOI18N
//        setValue("canEditAsText", Boolean.FALSE); // NOI18N
        setValue ("ColumnDescriptionTTV", hint); // NOI18N
        if (sortable) {
            setValue("ComparableColumnTTV", Boolean.TRUE);// NOI18N
        }
        if (!defaultVisibility) {
            setValue("InvisibleInTreeTableView", Boolean.TRUE);// NOI18N
        }
    }

    // Used for the Tree column (column 0)
    /** Construct a column object for the treecolumn (leftmost
     * column).
     * @param uid UID of the column
     * @param name Property name
     * @param displayName Name shown in the display
     * @param hint Tooltip for the property
     * @param sortable Whether or not this column is sortable
     * @param width Default width for the column
     */
    public ColumnProperty (
        int uid,
        String name,
        String displayName,
        String hint,
        boolean sortable,
        int width
    ) {     
        super(name, String.class, displayName, hint);
        this.uid = uid;
        this.width = width;
        setValue( "TreeColumnTTV", Boolean.TRUE );// NOI18N
        setValue("suppressCustomEditor", Boolean.TRUE); // NOI18N
        setValue("canEditAsText", Boolean.FALSE); // NOI18N
        if (sortable) {
            setValue ("ComparableColumnTTV", Boolean.TRUE);// NOI18N
        }
    }       

    public Object getValue() {
        return null;
    }

    public int getWidth() {
        return width;
    }

    public final void setPropertyEditorClass(Class peClass) {
        propertyEditorClass = peClass;
    }

    public final PropertyEditor getPropertyEditor() {
        if (propertyEditorClass != null)
            try {
                return (PropertyEditor) propertyEditorClass.newInstance ();
            } catch (InstantiationException ex) {
            } catch (IllegalAccessException iex) {
            }
        return super.getPropertyEditor ();
    }
}
... 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.