mirror of
https://github.com/corda/corda.git
synced 2025-01-07 13:38:47 +00:00
14 lines
231 B
Java
14 lines
231 B
Java
package java.text;
|
|
|
|
public class DateFormatSymbols {
|
|
private String[] ampm = new String[] { "AM", "PM" };
|
|
|
|
public String[] getAmPmStrings() {
|
|
return ampm;
|
|
}
|
|
|
|
public void setAmPmStrings(String[] v) {
|
|
ampm = v;
|
|
}
|
|
}
|