home *** CD-ROM | disk | FTP | other *** search
/ Apple Developer Connection Student Program / ADC Tools Sampler CD Disk 3 1999.iso / Metrowerks CodeWarrior / Java Support / Java_Source / IFC_112 / netscape / application / TextBag.java < prev    next >
Encoding:
Text File  |  1999-05-28  |  370 b   |  18 lines  |  [TEXT/CWIE]

  1. // TextBag.java
  2. // By Ned Etcode
  3. // Copyright 1995, 1996, 1997 Netscape Communications Corp. All rights reserved.
  4.  
  5. package netscape.application;
  6.  
  7. class TextBag extends Object implements Clipboard {
  8.     String text;
  9.  
  10.     synchronized public void setText(String text) {
  11.         this.text = text;
  12.     }
  13.  
  14.     synchronized public String text() {
  15.         return text;
  16.     }
  17. }
  18.