mirror of
https://github.com/corda/corda.git
synced 2025-06-17 14:48:16 +00:00
quick sketches of various SWT 3.3 dependencies
This commit is contained in:
10
classpath/java/text/Format.java
Normal file
10
classpath/java/text/Format.java
Normal file
@ -0,0 +1,10 @@
|
||||
package java.text;
|
||||
|
||||
public abstract class Format {
|
||||
public final String format(Object o) {
|
||||
return format(o, new StringBuffer(), new FieldPosition(0)).toString();
|
||||
}
|
||||
|
||||
public abstract StringBuffer format(Object o, StringBuffer target,
|
||||
FieldPosition p);
|
||||
}
|
Reference in New Issue
Block a user