JDK 1.1 Source Code Directory

JDK 1.1 source code directory contains Java source code for JDK 1.1 core classes: "C:\fyicenter\jdk-1.1.8\src".

Here is the list of Java classes of the JDK 1.1 source code:

✍: FYIcenter

java/text/resources/LocaleElements_fr_LU.java

/*
 * @(#)LocaleElements_fr_LU.java	1.1 98/07/07
 *
 * (C) Copyright IBM Corp. 1998 - All Rights Reserved
 */

/**
 * Table of Java supplied standard locale elements
 * Created 19 May 1998
 */

// WARNING : the format of this file will change in the future!

package java.text.resources;

import java.util.ListResourceBundle;

public class LocaleElements_fr_LU extends ListResourceBundle {
    /**
     * Overrides ListResourceBundle
     */
    public Object[][] getContents() {
        return new Object[][] {
            { "LocaleString", "fr_LU" }, // locale id based on iso codes
            { "ShortCountry", "LUX" }, // iso-3 abbrev country name
            { "CurrencyElements",
                new String[] {
                    "F", // local currency symbol
                    "LUF", // intl currency symbol
                    "," // monetary decimal separator
                }
            }
        };
    }
}

java/text/resources/LocaleElements_fr_LU.java

 

Or download all of them as a single archive file:

File name: jdk-1.1.8-src.zip
File size: 1574187 bytes
Release date: 2018-11-16
Download 

 

Backup JDK 1.1 Installation Directory

JDK 1.1 classes.zip - Java Core Classes

Download and Review JDK 1.1

⇑⇑ FAQ for JDK (Java Development Kit)

2018-11-17, 149189👍, 0💬