Created
April 28, 2010 22:35
-
-
Save knowuh/382832 to your computer and use it in GitHub Desktop.
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
(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