home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Programming Languages Suite
/
ProgLangD.iso
/
VCAFE.3.0A
/
Main.bin
/
LocaleElements_it_IT_EURO.java
< prev
next >
Wrap
Text File
|
1998-10-14
|
805b
|
33 lines
/*
* @(#)LocaleElements_it_IT_EURO.java 1.2 98/10/09
*
* (C) Copyright IBM Corp. 1998 - All Rights Reserved
*/
/*
* EURO locale for it_IT
*/
// WARNING : the format of this file will change in the future!
package java.text.resources;
import java.util.ListResourceBundle;
public class LocaleElements_it_IT_EURO extends ListResourceBundle {
/**
* Overrides ListResourceBundle
*/
public Object[][] getContents() {
return new Object[][] {
{ "NumberPatterns",
new String[] {
"#,##0.###;-#,##0.###", // decimal pattern
"\u20AC #,##0.00;-\u20AC #,##0.00", // currency pattern
"#,##0%" // percent pattern
}
}
};
}
}