Skip to content

Instantly share code, notes, and snippets.

@andsel
Created September 29, 2011 15:57
Show Gist options
  • Save andsel/1251075 to your computer and use it in GitHub Desktop.
Save andsel/1251075 to your computer and use it in GitHub Desktop.
class abstract Geometry {
abstract Geometry envelope();
}
clas Rect extends Geometry {
public Rect(int height, int width) {...}
}
class Circle extends Geometry {
public Geometry envelope() {
return new Rect(this.diam, this.diam);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment