home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Programming Languages Suite
/
ProgLangD.iso
/
VCAFE.3.0A
/
Main.bin
/
BevelTypePropertyEditor.java
< prev
next >
Wrap
Text File
|
1998-04-21
|
630b
|
26 lines
package com.symantec.itools.swing.borders;
import com.symantec.itools.beans.*;
public final class BevelTypePropertyEditor
extends TaggedIntPropertyEditor
{
private static TaggedInt[] m_Tags = null;
// When the class loads, load the tags
static
{
m_Tags = new TaggedInt[]
{
new TaggedInt("RAISED", com.sun.java.swing.border.BevelBorder.RAISED, "com.sun.java.swing.border.BevelBorder.RAISED"),
new TaggedInt("LOWERED", com.sun.java.swing.border.BevelBorder.LOWERED, "com.sun.java.swing.border.BevelBorder.LOWERED"),
};
}
public BevelTypePropertyEditor()
{
super(m_Tags);
}
}