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
| public interface Struct { | |
| <T> T get(FieldType<T> type); | |
| <T> void set(FieldType<T> type, T value); | |
| } | |
| /////////////////////////////////////// | |
| public interface FieldType<T> { | |
| String getFieldName(); | |
| Class<T> getType(); |