mirror of
https://github.com/corda/corda.git
synced 2025-06-13 04:38:19 +00:00
implement a few classpath methods required by SWT for Mac OS X
This commit is contained in:
@ -2,6 +2,11 @@ package java.text;
|
||||
|
||||
public class DateFormatSymbols {
|
||||
private String[] ampm = new String[] { "AM", "PM" };
|
||||
private String[] shortWeekdays = new String[] { "Sun", "Mon", "Tue",
|
||||
"Wed", "Thu", "Fri", "Sat" };
|
||||
private String[] shortMonths = new String[] { "Jan", "Feb", "Mar", "Apr",
|
||||
"May", "Jun", "Jul", "Aug",
|
||||
"Sep", "Oct", "Nov", "Dec" };
|
||||
|
||||
public String[] getAmPmStrings() {
|
||||
return ampm;
|
||||
@ -10,4 +15,12 @@ public class DateFormatSymbols {
|
||||
public void setAmPmStrings(String[] v) {
|
||||
ampm = v;
|
||||
}
|
||||
|
||||
public String[] getShortWeekdays() {
|
||||
return shortWeekdays;
|
||||
}
|
||||
|
||||
public String[] getShortMonths() {
|
||||
return shortMonths;
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user