home *** CD-ROM | disk | FTP | other *** search
/ io Programmo 25 / IOPROG_25.ISO / SOFT / JavaS / javastar-eval.exe / data1.cab / Help_Files / tutorial / NameDataDecls / SearchWin.java < prev   
Encoding:
Java Source  |  1999-02-11  |  1.3 KB  |  61 lines

  1. /* Map file generated by JavaStar */
  2.  
  3. package NameData;
  4. import suntest.javastar.lib.*;
  5. import java.awt.*;
  6.  
  7. public class SearchWin {
  8.  
  9.   /* Frame */
  10.   public static JSComponent SearchPop(){
  11.     return JS.frame("Search");
  12.   }
  13.  
  14.     /* Label */
  15.     public static JSComponent select_criteria_(){
  16.       return SearchPop().member("java.awt.Label", "select criteria:");
  17.     }
  18.  
  19.     /* Choice */
  20.     public static JSComponent choice(){
  21.       return SearchPop().member("java.awt.Choice");
  22.     }
  23.  
  24.     /* Label */
  25.     public static JSComponent contains_strings_(){
  26.       return SearchPop().member("java.awt.Label", "contains strings:");
  27.     }
  28.  
  29.     /* TextField */
  30.     public static JSComponent containsStrTextField(){
  31.       return SearchPop().member("java.awt.TextField");
  32.     }
  33.  
  34.     /* Label */
  35.     public static JSComponent search_results_(){
  36.       return SearchPop().member("java.awt.Label", "search results:");
  37.     }
  38.  
  39.     /* List */
  40.     public static JSComponent list(){
  41.       return SearchPop().member("java.awt.List");
  42.     }
  43.  
  44.     /* Button */
  45.     public static JSComponent Search(){
  46.       return SearchPop().button("Search");
  47.     }
  48.  
  49.     /* Button */
  50.     public static JSComponent View_Result(){
  51.       return SearchPop().button("View Result");
  52.     }
  53.  
  54.     /* Button */
  55.     public static JSComponent Close(){
  56.       return SearchPop().button("Close");
  57.     }
  58.  
  59. }
  60.  
  61.