X-Git-Url: http://source.jalview.org/gitweb/?a=blobdiff_plain;f=src%2Fswingjs%2Fapi%2Fjs%2FHTML5Applet.java;fp=src%2Fswingjs%2Fapi%2Fjs%2FHTML5Applet.java;h=d734c31cb0d7e60b1493e6bd73c73980ad8d39fc;hb=9c98d4bd666346f6ad3892c5394b7da3be82d93e;hp=b844476fd67e9717ada3bfde07bd94378e9fc6cf;hpb=c7b2143c9cf7c5e05ad63251f7d3910751b16d20;p=jalview.git diff --git a/src/swingjs/api/js/HTML5Applet.java b/src/swingjs/api/js/HTML5Applet.java index b844476..d734c31 100644 --- a/src/swingjs/api/js/HTML5Applet.java +++ b/src/swingjs/api/js/HTML5Applet.java @@ -1,35 +1,35 @@ package swingjs.api.js; -public interface HTML5Applet { +public interface HTML5Applet +{ - /** - * The canvas that is being used by the HTML5 applet - * - * @return - */ - Object _getHtml5Canvas(); + /** + * The canvas that is being used by the HTML5 applet + * + * @return + */ + Object _getHtml5Canvas(); - int _getHeight(); + int _getHeight(); - int _getWidth(); + int _getWidth(); - /** - * The div associated with the HTML5 applet - * - * @return - */ - Object _getContentLayer(); + /** + * The div associated with the HTML5 applet + * + * @return + */ + Object _getContentLayer(); - /** - * Simple resizing for an inline applet - * - * @param widthHeight - */ - void _resizeApplet(int[] widthHeight); + /** + * Simple resizing for an inline applet + * + * @param widthHeight + */ + void _resizeApplet(int[] widthHeight); - void _show(boolean b); - - String _getID(); + void _show(boolean b); + String _getID(); }