JAL-3438 spotless for 2.11.2.0
[jalview.git] / src / swingjs / api / js / HTML5Applet.java
index b844476..d734c31 100644 (file)
@@ -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();
 
 }