java
Java
code posted
created at 01 Feb 04:57
Edit
|
Back
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 |
public static final class Location implements Serializable { @Exported public final String remote; @Exported public final String local; @DataBoundConstructor public Location(String remote, String local) { this.remote = remote; this.local = local; } } |
364 Bytes in 4 ms with coderay