home *** CD-ROM | disk | FTP | other *** search
/ Programming Languages Suite / ProgLangD.iso / VCAFE.3.0A / Main.bin / GroupBundle.java < prev    next >
Text File  |  1998-09-28  |  353b  |  14 lines

  1. package com.symantec.itools.awt;
  2.  
  3. import java.util.ListResourceBundle;
  4.  
  5. public class GroupBundle extends ListResourceBundle {
  6.    public Object[][] getContents() {
  7.        return contents;
  8.    }
  9.    static final Object[][] contents = {
  10.        // LOCALIZE THIS
  11.        {"GroupAWTAdditions", "AWT Additions"},
  12.        // END "LOCALIZE THIS"
  13.    };
  14. }