001: /*
002: * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
003: *
004: * Copyright 1997-2007 Sun Microsystems, Inc. All rights reserved.
005: *
006: * The contents of this file are subject to the terms of either the GNU
007: * General Public License Version 2 only ("GPL") or the Common
008: * Development and Distribution License("CDDL") (collectively, the
009: * "License"). You may not use this file except in compliance with the
010: * License. You can obtain a copy of the License at
011: * http://www.netbeans.org/cddl-gplv2.html
012: * or nbbuild/licenses/CDDL-GPL-2-CP. See the License for the
013: * specific language governing permissions and limitations under the
014: * License. When distributing the software, include this License Header
015: * Notice in each file and include the License file at
016: * nbbuild/licenses/CDDL-GPL-2-CP. Sun designates this
017: * particular file as subject to the "Classpath" exception as provided
018: * by Sun in the GPL Version 2 section of the License file that
019: * accompanied this code. If applicable, add the following below the
020: * License Header, with the fields enclosed by brackets [] replaced by
021: * your own identifying information:
022: * "Portions Copyrighted [year] [name of copyright owner]"
023: *
024: * Contributor(s):
025: *
026: * The Original Software is NetBeans. The Initial Developer of the Original
027: * Software is Sun Microsystems, Inc. Portions Copyright 1997-2006 Sun
028: * Microsystems, Inc. All Rights Reserved.
029: *
030: * If you wish your version of this file to be governed by only the CDDL
031: * or only the GPL Version 2, indicate your decision by adding
032: * "[Contributor] elects to include this software in this distribution
033: * under the [CDDL or GPL Version 2] license." If you do not indicate a
034: * single choice of license, a recipient has the option to distribute
035: * your version of this file under either the CDDL, the GPL Version 2 or
036: * to extend the choice of license to its licensees as provided above.
037: * However, if you add GPL Version 2 code and therefore, elected the GPL
038: * Version 2 license, then the option applies only if the new code is
039: * made subject to such option by the copyright holder.
040: */
041:
042: package org.netbeans.beaninfo;
043:
044: import java.awt.Component;
045: import java.awt.Image;
046: import java.beans.*;
047:
048: import org.openide.awt.Actions;
049: import org.openide.explorer.propertysheet.ExPropertyEditor;
050: import org.openide.explorer.propertysheet.PropertyEnv;
051: import org.openide.loaders.DataLoader;
052: import org.openide.util.Exceptions;
053: import org.openide.util.NbBundle;
054: import org.openide.util.actions.SystemAction;
055: import org.openide.util.Utilities;
056:
057: /** BeanInfo for {@link DataLoader}. */
058: public class DataLoaderBeanInfo extends SimpleBeanInfo {
059:
060: public PropertyDescriptor[] getPropertyDescriptors() {
061: try {
062: PropertyDescriptor representationClass = new PropertyDescriptor(
063: "representationClassName", DataLoader.class,
064: "getRepresentationClassName", null); // NOI18N
065: representationClass.setDisplayName(NbBundle.getBundle(
066: DataLoaderBeanInfo.class).getString(
067: "PROP_representationClass"));
068: representationClass.setShortDescription(NbBundle.getBundle(
069: DataLoaderBeanInfo.class).getString(
070: "HINT_representationClass"));
071: representationClass.setExpert(true);
072: PropertyDescriptor actions = new PropertyDescriptor(
073: "actions", DataLoader.class); // NOI18N
074: actions
075: .setDisplayName(NbBundle.getBundle(
076: DataLoaderBeanInfo.class).getString(
077: "PROP_actions"));
078: actions
079: .setShortDescription(NbBundle.getBundle(
080: DataLoaderBeanInfo.class).getString(
081: "HINT_actions"));
082: actions.setPropertyEditorClass(ActionsEditor.class);
083: actions.setValue("canEditAsText", Boolean.FALSE); // NOI18N
084: return new PropertyDescriptor[] { actions,
085: representationClass };
086: } catch (IntrospectionException ie) {
087: Exceptions.printStackTrace(ie);
088: return null;
089: }
090: }
091:
092: /**
093: * Return the icon
094: */
095: public Image getIcon(int type) {
096: if ((type == java.beans.BeanInfo.ICON_COLOR_16x16)
097: || (type == java.beans.BeanInfo.ICON_MONO_16x16))
098: return Utilities
099: .loadImage("org/netbeans/core/resources/objectTypes.gif"); // NOI18N
100: else
101: return Utilities
102: .loadImage("org/netbeans/core/resources/objectTypes32.gif"); // NOI18N
103: }
104:
105: public static class ActionsEditor extends PropertyEditorSupport
106: implements ExPropertyEditor {
107:
108: private PropertyEnv env;
109:
110: public boolean supportsCustomEditor() {
111: return true;
112: }
113:
114: public Component getCustomEditor() {
115: return new LoaderActionsPanel(this , env);
116: }
117:
118: public String getAsText() {
119: SystemAction[] actions = (SystemAction[]) getValue();
120: if (actions == null)
121: return ""; // NOI18N
122: StringBuffer buf = new StringBuffer(actions.length * 15 + 1);
123: for (int i = 0; i < actions.length; i++) {
124: if (actions[i] == null)
125: continue;
126: if (i > 0)
127: buf.append(", "); // I18N?
128: buf.append(Actions.cutAmpersand(actions[i].getName()));
129: }
130: return buf.toString();
131: }
132:
133: public void setAsText(String text)
134: throws IllegalArgumentException {
135: throw new IllegalArgumentException();
136: }
137:
138: public void attachEnv(PropertyEnv env) {
139: this.env = env;
140: }
141:
142: }
143:
144: }
|