Source Code Cross Referenced for TestInputDataStructure.java in  » Internationalization-Localization » icu4j » com » ibm » icu » dev » test » stringprep » Java Source Code / Java DocumentationJava Source Code and Java Documentation

Java Source Code / Java Documentation
1. 6.0 JDK Core
2. 6.0 JDK Modules
3. 6.0 JDK Modules com.sun
4. 6.0 JDK Modules com.sun.java
5. 6.0 JDK Modules sun
6. 6.0 JDK Platform
7. Ajax
8. Apache Harmony Java SE
9. Aspect oriented
10. Authentication Authorization
11. Blogger System
12. Build
13. Byte Code
14. Cache
15. Chart
16. Chat
17. Code Analyzer
18. Collaboration
19. Content Management System
20. Database Client
21. Database DBMS
22. Database JDBC Connection Pool
23. Database ORM
24. Development
25. EJB Server geronimo
26. EJB Server GlassFish
27. EJB Server JBoss 4.2.1
28. EJB Server resin 3.1.5
29. ERP CRM Financial
30. ESB
31. Forum
32. GIS
33. Graphic Library
34. Groupware
35. HTML Parser
36. IDE
37. IDE Eclipse
38. IDE Netbeans
39. Installer
40. Internationalization Localization
41. Inversion of Control
42. Issue Tracking
43. J2EE
44. JBoss
45. JMS
46. JMX
47. Library
48. Mail Clients
49. Net
50. Parser
51. PDF
52. Portal
53. Profiler
54. Project Management
55. Report
56. RSS RDF
57. Rule Engine
58. Science
59. Scripting
60. Search Engine
61. Security
62. Sevlet Container
63. Source Control
64. Swing Library
65. Template Engine
66. Test Coverage
67. Testing
68. UML
69. Web Crawler
70. Web Framework
71. Web Mail
72. Web Server
73. Web Services
74. Web Services apache cxf 2.0.1
75. Web Services AXIS2
76. Wiki Engine
77. Workflow Engines
78. XML
79. XML UI
Java
Java Tutorial
Java Open Source
Jar File Download
Java Articles
Java Products
Java by API
Photoshop Tutorials
Maya Tutorials
Flash Tutorials
3ds-Max Tutorials
Illustrator Tutorials
GIMP Tutorials
C# / C Sharp
C# / CSharp Tutorial
C# / CSharp Open Source
ASP.Net
ASP.NET Tutorial
JavaScript DHTML
JavaScript Tutorial
JavaScript Reference
HTML / CSS
HTML CSS Reference
C / ANSI-C
C Tutorial
C++
C++ Tutorial
Ruby
PHP
Python
Python Tutorial
Python Open Source
SQL Server / T-SQL
SQL Server / T-SQL Tutorial
Oracle PL / SQL
Oracle PL/SQL Tutorial
PostgreSQL
SQL / MySQL
MySQL Tutorial
VB.Net
VB.Net Tutorial
Flash / Flex / ActionScript
VBA / Excel / Access / Word
XML
XML Tutorial
Microsoft Office PowerPoint 2007 Tutorial
Microsoft Office Excel 2007 Tutorial
Microsoft Office Word 2007 Tutorial
Java Source Code / Java Documentation » Internationalization Localization » icu4j » com.ibm.icu.dev.test.stringprep 
Source Cross Referenced  Class Diagram Java Document (Java Doc) 


001:        /*
002:
003:         *******************************************************************************
004:         * Copyright (C) 2005, International Business Machines Corporation and    *
005:         * others. All Rights Reserved.                                                *
006:         *******************************************************************************
007:         */
008:
009:        package com.ibm.icu.dev.test.stringprep;
010:
011:        /**
012:         * @author limaoyu
013:         */
014:        public class TestInputDataStructure {
015:
016:            private String desc = null;
017:
018:            private String namebase = null;
019:
020:            private String nameutf8 = null;
021:
022:            private String namezone = null;
023:
024:            private String failzone1 = null;
025:
026:            private String failzone2 = null;
027:
028:            private String token = null;
029:
030:            private String passfail = null;
031:
032:            private String type = null;
033:
034:            /**
035:             * @return Returns the desc.
036:             */
037:            public String getDesc() {
038:                return desc;
039:            }
040:
041:            /**
042:             * @param desc The desc to set.
043:             */
044:            public void setDesc(String desc) {
045:                this .desc = desc;
046:            }
047:
048:            /**
049:             * @return Returns the failzone1.
050:             */
051:            public String getFailzone1() {
052:                return failzone1;
053:            }
054:
055:            /**
056:             * @param failzone1 The failzone1 to set.
057:             */
058:            public void setFailzone1(String failzone1) {
059:                this .failzone1 = failzone1;
060:            }
061:
062:            /**
063:             * @return Returns the failzone2.
064:             */
065:            public String getFailzone2() {
066:                return failzone2;
067:            }
068:
069:            /**
070:             * @param failzone2 The failzone2 to set.
071:             */
072:            public void setFailzone2(String failzone2) {
073:                this .failzone2 = failzone2;
074:            }
075:
076:            /**
077:             * @return Returns the namebase.
078:             */
079:            public String getNamebase() {
080:                return namebase;
081:            }
082:
083:            /**
084:             * @param namebase The namebase to set.
085:             */
086:            public void setNamebase(String namebase) {
087:                this .namebase = namebase;
088:            }
089:
090:            /**
091:             * @return Returns the nameutf8.
092:             */
093:            public String getNameutf8() {
094:                return nameutf8;
095:            }
096:
097:            /**
098:             * @param nameutf8 The nameutf8 to set.
099:             */
100:            public void setNameutf8(String nameutf8) {
101:                this .nameutf8 = nameutf8;
102:            }
103:
104:            /**
105:             * @return Returns the namezone.
106:             */
107:            public String getNamezone() {
108:                return namezone;
109:            }
110:
111:            /**
112:             * @param namezone The namezone to set.
113:             */
114:            public void setNamezone(String namezone) {
115:                this .namezone = namezone;
116:            }
117:
118:            /**
119:             * @return Returns the passfail.
120:             */
121:            public String getPassfail() {
122:                return passfail;
123:            }
124:
125:            /**
126:             * @param passfail The passfail to set.
127:             */
128:            public void setPassfail(String passfail) {
129:                this .passfail = passfail;
130:            }
131:
132:            /**
133:             * @return Returns the token.
134:             */
135:            public String getToken() {
136:                return token;
137:            }
138:
139:            /**
140:             * @param token The token to set.
141:             */
142:            public void setToken(String token) {
143:                this .token = token;
144:            }
145:
146:            /**
147:             * @return Returns the type.
148:             */
149:            public String getType() {
150:                return type;
151:            }
152:
153:            /**
154:             * @param type The type to set.
155:             */
156:            public void setType(String type) {
157:                this.type = type;
158:            }
159:        }
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.