/[classpath]/classpath/java/awt/TextArea.java
ViewVC logotype

Diff of /classpath/java/awt/TextArea.java

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 1.16 by jfrijters, Mon Oct 11 13:11:56 2004 UTC revision 1.17 by mkoch, Tue Nov 23 18:04:46 2004 UTC
# Line 44  import java.awt.peer.TextAreaPeer; Line 44  import java.awt.peer.TextAreaPeer;
44  import java.util.HashSet;  import java.util.HashSet;
45  import java.util.Set;  import java.util.Set;
46    
47    import javax.accessibility.AccessibleContext;
48    import javax.accessibility.AccessibleStateSet;
49    
50    
51  /**  /**
52   * A TextArea is a text component capable of displaying multiple lines   * A TextArea is a text component capable of displaying multiple lines
# Line 597  public class TextArea extends TextCompon Line 600  public class TextArea extends TextCompon
600    {    {
601      return next_text_number++;      return next_text_number++;
602    }    }
603      
604      protected class AccessibleAWTTextArea extends AccessibleAWTTextComponent
605      {
606        protected AccessibleAWTTextArea()
607        {
608        }
609        
610        public AccessibleStateSet getAccessibleStateSet()
611        {
612          return super.getAccessibleStateSet();
613        }
614      }
615      
616      public AccessibleContext getAccessibleContext()
617      {
618        return new AccessibleAWTTextArea();
619      }
620  }  }

Legend:
Removed from v.1.16  
changed lines
  Added in v.1.17

savannah-hackers-public@gnu.org
ViewVC Help
Powered by ViewVC 1.1.26