| Class | Line # | Actions | |||
|---|---|---|---|---|---|
| HTML5Applet | 3 | 0 | 0 |
| 1 | package swingjs.api.js; | |
| 2 | ||
| 3 | public interface HTML5Applet | |
| 4 | { | |
| 5 | ||
| 6 | /** | |
| 7 | * The canvas that is being used by the HTML5 applet | |
| 8 | * | |
| 9 | * @return | |
| 10 | */ | |
| 11 | Object _getHtml5Canvas(); | |
| 12 | ||
| 13 | int _getHeight(); | |
| 14 | ||
| 15 | int _getWidth(); | |
| 16 | ||
| 17 | /** | |
| 18 | * The div associated with the HTML5 applet | |
| 19 | * | |
| 20 | * @return | |
| 21 | */ | |
| 22 | Object _getContentLayer(); | |
| 23 | ||
| 24 | /** | |
| 25 | * Simple resizing for an inline applet | |
| 26 | * | |
| 27 | * @param widthHeight | |
| 28 | */ | |
| 29 | void _resizeApplet(int[] widthHeight); | |
| 30 | ||
| 31 | void _show(boolean b); | |
| 32 | ||
| 33 | String _getID(); | |
| 34 | ||
| 35 | } |