home *** CD-ROM | disk | FTP | other *** search
/ BUG 15 / BUGCD1998_06.ISO / aplic / jbuilder / jsamples.z / WrappingTextViewerRes.java < prev    next >
Text File  |  1997-07-03  |  412b  |  17 lines

  1. package borland.samples.intl.beans.resources;
  2.  
  3. import java.util.*;
  4.  
  5. public class WrappingTextViewerRes extends ListResourceBundle {
  6.   static final Object[][] contents = {
  7.     // inspector property name short descriptions
  8.     {"text","Text to display"},
  9.     {"columnName","DataSet column name"},
  10.     {"dataSet","DataSet name"},
  11.   };
  12.  
  13.   public Object[][] getContents() {
  14.     return contents;
  15.   }
  16. }
  17.