Skip to content

Instantly share code, notes, and snippets.

@knowuh
Created April 28, 2010 22:35
Show Gist options
  • Save knowuh/382832 to your computer and use it in GitHub Desktop.
Save knowuh/382832 to your computer and use it in GitHub Desktop.
(in OTPhetModel)
...
public interface OTPhetModel extends OTObjectInterface {
public void setWidth();
public int getWidth();
public final static int DEFAULT_width = 770;
public void setHeight();
public int getHeight();
public final static int DEFAULT_height = 750;
public String getAuthoredDataURL();
}
...
(in OTPhetBalloonsModel)
...
public interface OTPhetBalloonsModel extends OTPhetModel {
public final static int DEFAULT_width = 470;
public final static int DEFAULT_height = 420;
}
...
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment