jdk/make/tools/swing-beans/DocBeanInfo.java
changeset 2 90ce3da70b43
child 5506 202f599c92aa
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/jdk/make/tools/swing-beans/DocBeanInfo.java	Sat Dec 01 00:00:00 2007 +0000
@@ -0,0 +1,99 @@
+/*
+ * Copyright 1998-2000 Sun Microsystems, Inc.  All Rights Reserved.
+ * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
+ *
+ * This code is free software; you can redistribute it and/or modify it
+ * under the terms of the GNU General Public License version 2 only, as
+ * published by the Free Software Foundation.  Sun designates this
+ * particular file as subject to the "Classpath" exception as provided
+ * by Sun in the LICENSE file that accompanied this code.
+ *
+ * This code is distributed in the hope that it will be useful, but WITHOUT
+ * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
+ * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
+ * version 2 for more details (a copy is included in the LICENSE file that
+ * accompanied this code).
+ *
+ * You should have received a copy of the GNU General Public License version
+ * 2 along with this work; if not, write to the Free Software Foundation,
+ * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
+ *
+ * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
+ * CA 95054 USA or visit www.sun.com if you need additional information or
+ * have any questions.
+ */
+
+import java.util.HashMap;
+
+/**
+ * Class that holds information for populating a FeatureDescriptor. For the class,
+ * This information represents the BeanDescriptor, for a property, it represents
+ * a PropertyDescriptor.
+ */
+public class DocBeanInfo {
+
+    // Values of the BeanFlags
+    public static final int BOUND = 1;
+    public static final int EXPERT = 2;
+    public static final int CONSTRAINED = 4;
+    public static final int HIDDEN = 8;
+    public static final int PREFERRED = 16 ;
+
+    public String name;
+    public int beanflags;
+    public String desc;
+    public String displayname;
+    public String propertyeditorclass;
+    public String customizerclass;
+
+    public HashMap attribs;
+    public HashMap enums;
+
+    public DocBeanInfo(){}
+
+    public DocBeanInfo(String p, int flags, String d,
+                         String displayname, String pec, String cc,
+                         HashMap attribs, HashMap enums) {
+        this.name = p;
+        this.beanflags = flags;
+        this.desc = d;
+        this.displayname = displayname;
+        this.propertyeditorclass = pec;
+        this.customizerclass = cc;
+
+        this.attribs = attribs;
+        this.enums = enums;
+    }
+
+    public String toString() {
+        StringBuffer buffer = new StringBuffer("*****");
+        buffer.append("\nProperty: " + name);
+        buffer.append("\tDescription: " + desc);
+        buffer.append("\nDisplayname: " + displayname);
+        buffer.append("\nPropertyEditorClass: " + propertyeditorclass);
+        buffer.append("\nCustomizerClass: " + customizerclass);
+
+        if ((beanflags & BOUND) != 0)
+            buffer.append("\nBound: true");
+
+        if ((beanflags & EXPERT) != 0)
+            buffer.append("\nExpert: true");
+
+        if ((beanflags & CONSTRAINED) != 0)
+            buffer.append("\nConstrained: true");
+
+        if ((beanflags & HIDDEN) !=0)
+            buffer.append("\nHidden:  true");
+
+        if ((beanflags & PREFERRED) !=0)
+
+        if (attribs != null)
+            buffer.append(attribs.toString());
+
+        if (enums != null)
+            buffer.append(enums.toString());
+
+        return buffer.toString();
+    }
+
+}