Source Code Cross Referenced for FormatData_fi.java in  » 6.0-JDK-Modules-sun » text » sun » text » resources » 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 » 6.0 JDK Modules sun » text » sun.text.resources 
Source Cross Referenced  Class Diagram Java Document (Java Doc) 


001:        /*
002:         * Portions Copyright 1996-2006 Sun Microsystems, Inc.  All Rights Reserved.
003:         * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
004:         *
005:         * This code is free software; you can redistribute it and/or modify it
006:         * under the terms of the GNU General Public License version 2 only, as
007:         * published by the Free Software Foundation.  Sun designates this
008:         * particular file as subject to the "Classpath" exception as provided
009:         * by Sun in the LICENSE file that accompanied this code.
010:         *
011:         * This code is distributed in the hope that it will be useful, but WITHOUT
012:         * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
013:         * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
014:         * version 2 for more details (a copy is included in the LICENSE file that
015:         * accompanied this code).
016:         *
017:         * You should have received a copy of the GNU General Public License version
018:         * 2 along with this work; if not, write to the Free Software Foundation,
019:         * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
020:         *
021:         * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
022:         * CA 95054 USA or visit www.sun.com if you need additional information or
023:         * have any questions.
024:         */
025:
026:        /*
027:         * (C) Copyright Taligent, Inc. 1996, 1997 - All Rights Reserved
028:         * (C) Copyright IBM Corp. 1996 - 1998 - All Rights Reserved
029:         *
030:         * The original version of this source code and documentation
031:         * is copyrighted and owned by Taligent, Inc., a wholly-owned
032:         * subsidiary of IBM. These materials are provided under terms
033:         * of a License Agreement between Taligent and Sun. This technology
034:         * is protected by multiple US and International patents.
035:         *
036:         * This notice and attribution to Taligent may not be removed.
037:         * Taligent is a registered trademark of Taligent, Inc.
038:         *
039:         */
040:
041:        package sun.text.resources;
042:
043:        import java.util.ListResourceBundle;
044:
045:        public class FormatData_fi extends ListResourceBundle {
046:            /**
047:             * Overrides ListResourceBundle
048:             */
049:            protected final Object[][] getContents() {
050:                return new Object[][] {
051:                        { "MonthNames", new String[] { "tammikuu", // january
052:                                "helmikuu", // february
053:                                "maaliskuu", // march
054:                                "huhtikuu", // april
055:                                "toukokuu", // may
056:                                "kes\u00e4kuu", // june
057:                                "hein\u00e4kuu", // july
058:                                "elokuu", // august
059:                                "syyskuu", // september
060:                                "lokakuu", // october
061:                                "marraskuu", // november
062:                                "joulukuu", // december
063:                                "" // month 13 if applicable
064:                        } }, { "MonthAbbreviations", new String[] { "tammi", // abb january
065:                                "helmi", // abb february
066:                                "maalis", // abb march
067:                                "huhti", // abb april
068:                                "touko", // abb may
069:                                "kes\u00e4", // abb june
070:                                "hein\u00e4", // abb july
071:                                "elo", // abb august
072:                                "syys", // abb september
073:                                "loka", // abb october
074:                                "marras", // abb november
075:                                "joulu", // abb december
076:                                "" // abb month 13 if applicable
077:                        } }, { "DayNames", new String[] { "sunnuntai", // Sunday
078:                                "maanantai", // Monday
079:                                "tiistai", // Tuesday
080:                                "keskiviikko", // Wednesday
081:                                "torstai", // Thursday
082:                                "perjantai", // Friday
083:                                "lauantai" // Saturday
084:                        } }, { "DayAbbreviations", new String[] { "su", // abb Sunday
085:                                "ma", // abb Monday
086:                                "ti", // abb Tuesday
087:                                "ke", // abb Wednesday
088:                                "to", // abb Thursday
089:                                "pe", // abb Friday
090:                                "la" // abb Saturday
091:                        } }, { "NumberElements", new String[] { ",", // decimal separator
092:                                "\u00a0", // group (thousands) separator
093:                                ";", // list separator
094:                                "%", // percent sign
095:                                "0", // native 0 digit
096:                                "#", // pattern digit
097:                                "-", // minus sign
098:                                "E", // exponential
099:                                "\u2030", // per mille
100:                                "\u221e", // infinity
101:                                "\ufffd" // NaN
102:                        } }, { "DateTimePatterns", new String[] { "H.mm.ss z", // full time pattern
103:                                "'klo 'H.mm.ss", // long time pattern
104:                                "H:mm:ss", // medium time pattern
105:                                "H:mm", // short time pattern
106:                                "d. MMMM'ta 'yyyy", // full date pattern
107:                                "d. MMMM'ta 'yyyy", // long date pattern
108:                                "d.M.yyyy", // medium date pattern
109:                                "d.M.yyyy", // short date pattern
110:                                "{1} {0}" // date-time pattern
111:                        } }, { "DateTimePatternChars", "GanjkHmsSEDFwWxhKzZ" }, };
112:            }
113:        }
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.