home *** CD-ROM | disk | FTP | other *** search
/ Chip 1998 November / Chip_1998-11_cd.bin / tema / Cafe / jfc.bin / Accessible.java < prev    next >
Text File  |  1998-02-26  |  2KB  |  52 lines

  1. /*
  2.  * @(#)Accessible.java    1.27 98/02/04
  3.  * 
  4.  * Copyright (c) 1997 Sun Microsystems, Inc. All Rights Reserved.
  5.  * 
  6.  * This software is the confidential and proprietary information of Sun
  7.  * Microsystems, Inc. ("Confidential Information").  You shall not
  8.  * disclose such Confidential Information and shall use it only in
  9.  * accordance with the terms of the license agreement you entered into
  10.  * with Sun.
  11.  * 
  12.  * SUN MAKES NO REPRESENTATIONS OR WARRANTIES ABOUT THE SUITABILITY OF THE
  13.  * SOFTWARE, EITHER EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE
  14.  * IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR
  15.  * PURPOSE, OR NON-INFRINGEMENT. SUN SHALL NOT BE LIABLE FOR ANY DAMAGES
  16.  * SUFFERED BY LICENSEE AS A RESULT OF USING, MODIFYING OR DISTRIBUTING
  17.  * THIS SOFTWARE OR ITS DERIVATIVES.
  18.  * 
  19.  */
  20.  
  21. package com.sun.java.accessibility;
  22.  
  23. /**
  24.  * Interface Accessible is the main interface for the accessibility package. 
  25.  * All components that support
  26.  * the accessibility package must implement this interface.  
  27.  * It contains a single
  28.  * method, <a href="#getAccessibleContext">getAccessibleContext</a>, which  
  29.  * returns an instance of the class 
  30.  * <a href="com.sun.java.accessibility.AccessibleContext.html">Accessible
  31.  * Context</a>.
  32.  *
  33.  * @see AccessibleContext
  34.  *
  35.  * @version     1.1 11/24/97 20:34:48
  36.  * @author    Peter Korn
  37.  * @author      Hans Muller
  38.  * @author      Willie Walker
  39.  */
  40. public interface Accessible {
  41.  
  42.     /**
  43.      * Returns the AccessibleContext associated with this object.  In most
  44.      * cases, the return value should not be null if the object implements
  45.      * interface Accessible.  If a component developer creates a subclass
  46.      * of an object that implements Accessible, and that subclass
  47.      * is not Accessible, the developer should override the 
  48.      * getAccessibleContext method to return null.
  49.      */
  50.     public AccessibleContext getAccessibleContext();
  51. }
  52.