KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > jdesktop > swing > auth > resources > Resources


1 /*
2  * Created on Jan 27, 2005
3  *
4  */

5 package org.jdesktop.swing.auth.resources;
6
7 import java.util.ListResourceBundle JavaDoc;
8
9 /**
10  * @author Bino George
11  *
12  */

13 public class Resources extends ListResourceBundle JavaDoc {
14      private static final Object JavaDoc[][] contents = {
15         {"okString", "OK"},
16         {"okString.mnemonic", (int) 'O'},
17         {"cancelString", "Cancel"},
18         {"cancelString.mnemonic", (int) 'C'},
19         {"nameString", "Name"},
20         {"loginString", "Login"},
21         {"passwordString", "Password"},
22         {"rememberUserString", "Remember Me"},
23         {"rememberPasswordString", "Remember Password"},
24         {"loggingInString", "Logging in.."},
25         
26     };
27
28     public Object JavaDoc[][] getContents() {
29         return contents;
30     }
31 }
32
Popular Tags