home *** CD-ROM | disk | FTP | other *** search
Java Source | 1998-04-21 | 630 b | 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);
- }
- }
-