home *** CD-ROM | disk | FTP | other *** search
Java Source | 1999-02-11 | 1.3 KB | 61 lines |
- /* Map file generated by JavaStar */
-
- package NameData;
- import suntest.javastar.lib.*;
- import java.awt.*;
-
- public class SearchWin {
-
- /* Frame */
- public static JSComponent SearchPop(){
- return JS.frame("Search");
- }
-
- /* Label */
- public static JSComponent select_criteria_(){
- return SearchPop().member("java.awt.Label", "select criteria:");
- }
-
- /* Choice */
- public static JSComponent choice(){
- return SearchPop().member("java.awt.Choice");
- }
-
- /* Label */
- public static JSComponent contains_strings_(){
- return SearchPop().member("java.awt.Label", "contains strings:");
- }
-
- /* TextField */
- public static JSComponent containsStrTextField(){
- return SearchPop().member("java.awt.TextField");
- }
-
- /* Label */
- public static JSComponent search_results_(){
- return SearchPop().member("java.awt.Label", "search results:");
- }
-
- /* List */
- public static JSComponent list(){
- return SearchPop().member("java.awt.List");
- }
-
- /* Button */
- public static JSComponent Search(){
- return SearchPop().button("Search");
- }
-
- /* Button */
- public static JSComponent View_Result(){
- return SearchPop().button("View Result");
- }
-
- /* Button */
- public static JSComponent Close(){
- return SearchPop().button("Close");
- }
-
- }
-
-