Clover icon

Coverage Report

  1. Project Clover database Thu Dec 4 2025 14:43:25 GMT
  2. Package swingjs.api.js

File HTML5Applet.java

 

Code metrics

0
0
0
1
35
11
0
-
-
0
-

Classes

Class Line # Actions
HTML5Applet 3 0 0
-1.0 -
 

Contributing tests

No tests hitting this source file were found.

Source view

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    }