Created
November 19, 2015 12:00
-
-
Save Teino1978-Corp/6c3c82a5a2e391d63999 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class abc { | |
public static void main(String[] args) { | |
DomainObject subDomain = null; | |
Map<DomainField, String> d = null; | |
subDomain.add(DomainField.ZIP, d.get(DomainField.ZIP)); | |
} | |
private static interface SomeOtherInterface { } | |
private static class FieldValueAssociation { } | |
private static enum DomainField { ZIP;} | |
public interface MValue extends SomeOtherInterface, Serializable { } | |
public interface DomainObject extends Iterable<FieldValueAssociation>, Cloneable, Serializable { | |
void add(DomainField field, MValue... values); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment