home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Programming Languages Suite
/
ProgLangD.iso
/
VCAFE.3.0A
/
Main.bin
/
BeanDescriptorAttributes.java
< prev
next >
Wrap
Text File
|
1998-10-18
|
703b
|
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";
}