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-2007 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.modules.visualweb.faces.dt.data;
043:
044: import java.awt.Image;
045: import java.beans.BeanDescriptor;
046: import java.beans.BeanInfo;
047: import java.beans.EventSetDescriptor;
048: import java.beans.IntrospectionException;
049: import java.beans.MethodDescriptor;
050: import java.beans.PropertyDescriptor;
051: import java.beans.SimpleBeanInfo;
052: import javax.faces.model.DataModelListener;
053: import javax.faces.model.ResultSetDataModel;
054: import org.openide.util.Exceptions;
055:
056: public class ResultSetDataModelBeanInfo extends SimpleBeanInfo {
057:
058: public ResultSetDataModelBeanInfo() throws NoSuchMethodException {
059: }
060:
061: public BeanDescriptor getBeanDescriptor() {
062: return new BeanDescriptor(ResultSetDataModel.class, null);
063: }
064:
065: //public int getDefaultEventIndex() {}
066:
067: public int getDefaultPropertyIndex() {
068: return 0;
069: }
070:
071: public EventSetDescriptor[] getEventSetDescriptors() {
072: try {
073: EventSetDescriptor[] eventSetDescriptors;
074: eventSetDescriptors = new EventSetDescriptor[] { new EventSetDescriptor(
075: ResultSetDataModel.class,
076: "dataModel", //NOI18N
077: DataModelListener.class,
078: new String[] { "rowSelected" }
079:
080: , //NOI18N
081: "addDataModelListener", "removeDataModelListener") //NOI18N
082: };
083:
084: return eventSetDescriptors;
085: } catch (IntrospectionException e) {
086: Exceptions.printStackTrace(e);
087: return null;
088: }
089: }
090:
091: public Image getIcon(int iconKind) {
092: switch (iconKind) {
093: case BeanInfo.ICON_COLOR_16x16:
094: return loadImage("ResultSetDataModelIconColor16.png"); //NOI18N
095: case BeanInfo.ICON_COLOR_32x32:
096: return loadImage("ResultSetDataModelIconColor32.gif"); //NOI18N
097: case BeanInfo.ICON_MONO_16x16:
098: return loadImage("ResultSetDataModelIconMono16.gif"); //NOI18N
099: case BeanInfo.ICON_MONO_32x32:
100: return loadImage("ResultSetDataModelIconMono32.gif"); //NOI18N
101: }
102: return null;
103: }
104:
105: public synchronized MethodDescriptor[] getMethodDescriptors() {
106: try {
107: MethodDescriptor[] methodDescriptors = new MethodDescriptor[] {
108: new MethodDescriptor(ResultSetDataModel.class
109: .getMethod("getRowData", null)), //NOI18N
110: new MethodDescriptor(ResultSetDataModel.class
111: .getMethod("getRowCount", null)) //NOI18N
112: };
113:
114: return methodDescriptors;
115: } catch (NoSuchMethodException e) {
116: Exceptions.printStackTrace(e);
117: return null;
118: }
119: }
120:
121: public synchronized PropertyDescriptor[] getPropertyDescriptors() {
122: try {
123: PropertyDescriptor[] propertyDescriptors;
124: PropertyDescriptor rowData = new PropertyDescriptor(
125: "rowData", ResultSetDataModel.class, "getRowData",
126: null); //NOI18N
127:
128: PropertyDescriptor rowIndex = new PropertyDescriptor(
129: "rowIndex", ResultSetDataModel.class); //NOI18N
130:
131: PropertyDescriptor wrappedData = new PropertyDescriptor(
132: "wrappedData", ResultSetDataModel.class); //NOI18N
133: wrappedData
134: .setPropertyEditorClass(RowSetPropertyEditor.class);
135:
136: propertyDescriptors = new PropertyDescriptor[] { rowData,
137: rowIndex, wrappedData };
138: return propertyDescriptors;
139: } catch (IntrospectionException e) {
140: Exceptions.printStackTrace(e);
141: return null;
142: }
143: }
144: }
|