Skip to content

Commit

Permalink
Adding browser.DomScanResult
Browse files Browse the repository at this point in the history
  • Loading branch information
marigostra committed Jul 24, 2020
1 parent b73a78a commit ea1bca5
Showing 1 changed file with 22 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@

package org.luwrain.interaction.javafx.browser;

import java.util.*;

import com.sun.webkit.dom.DOMWindowImpl;
import org.w3c.dom.Node;

import org.luwrain.core.*;

final class DomScanResult
{
final DOMWindowImpl window;
final List<NodeInfo> dom = new ArrayList();
final Map<Node, Integer> domMap = new HashMap();

DomScanResult(DOMWindowImpl window)
{
NullCheck.notNull(window, "window");
this.window = window;
}
}

0 comments on commit ea1bca5

Please sign in to comment.