Skip to content

Instantly share code, notes, and snippets.

@jarek-przygodzki
Created April 12, 2013 10:57
Show Gist options
  • Save jarek-przygodzki/5371248 to your computer and use it in GitHub Desktop.
Save jarek-przygodzki/5371248 to your computer and use it in GitHub Desktop.
/**
* Object which is capable of writing itself
*/
public interface Writable<WriterType> {
/*
* Writes this object to the given writer
*/
WriterType writeTo(WriterType writer);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment