Skip to content

Instantly share code, notes, and snippets.

@gilleain
Created September 18, 2010 19:31
Show Gist options
  • Save gilleain/585975 to your computer and use it in GitHub Desktop.
Save gilleain/585975 to your computer and use it in GitHub Desktop.
/**
* Layout an object.
*
* @author maclean
*
* @param <T>
*/
public interface ILayout<T> {
public enum AxisOrientation { X, Y };
public void layout(T object, double centerX, double centerY);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment