Clover icon

Coverage Report

  1. Project Clover database Thu Dec 4 2025 16:11:35 GMT
  2. Package swingjs.api.js

File JQuery.java

 

Code metrics

0
0
0
1
15
8
0
-
-
0
-

Classes

Class Line # Actions
JQuery 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 JQuery {
4   
5    JQueryObject $(Object selector);
6   
7    DOMNode parseXML(String xmlData);
8   
9    boolean contains(Object outer, Object inner);
10   
11    Object parseJSON(String json);
12   
13    Object data(Object node, String attr);
14   
15    }