Created
June 23, 2012 22:07
-
-
Save pschichtel/2980248 to your computer and use it in GitHub Desktop.
Converter
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 Converter<T> | |
{ | |
public Object from(T object); | |
public T to(Object object); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment