home *** CD-ROM | disk | FTP | other *** search
Java Source | 1998-03-18 | 1.1 KB | 50 lines |
- package symantec.itools.awt;
-
- // 06/11/97 LAB Updated to Java 1.1.
- // 07/09/97 LAB Deprecated, since ButtonBase now contains this functionality.
-
- /**
- * @deprecated
- * All classes that extend ButtonBase, now contain HTML URL link capabilities.
- * Use LabelButton instead.
- * <p>
- * @version 1.1, July 9, 1997
- * @author Symantec
- */
- public class LabelHTMLLink extends LabelButton
- {
- /**
- * Constructs a LabelHTMLLink object.
- */
- public LabelHTMLLink() {
- }
-
- /**
- * @deprecated
- * @see ButtonBase#setLinkURL
- * @exception java.beans.PropertyVetoException
- * if the specified property value is unacceptable
- */
- public void setURL(java.net.URL u) throws java.beans.PropertyVetoException
- {
- super.setLinkURL(u);
- url = getLinkURL();
- }
-
- /**
- * @deprecated
- * @see ButtonBase#getLinkURL
- */
- public java.net.URL getURL()
- {
- return super.getLinkURL();
- }
-
- /**
- * @deprecated
- * @see ButtonBase#linkURL
- */
- protected java.net.URL url;
- }
-
-