home *** CD-ROM | disk | FTP | other *** search
Java Source | 1998-10-18 | 703 b | 28 lines |
- package com.symantec.itools.swing.beans;
-
- /**
- * Misc Swing defined bean descriptors attributes supported beyond the standard Java Beans.
- */
- public final class BeanDescriptorAttributes
- {
- /**
- * Attribute of type Boolean
- */
- public static final String IS_CONTAINER_ATTRIBUTE = "isContainer";
-
- /**
- * Attribute of type Boolean
- */
- public static final String IS_COMPONENT_ATTRIBUTE = "isComponent";
-
- /**
- * Attribute of type String
- */
- public static final String CONTAINER_DELEGATE_ATTRIBUTE = "containerDelegate";
-
- /**
- * Attribute of type Object[]
- */
- public static final String ENUMERATION_VALUES_ATTRIBUTE = "enumerationValues";
- }
-