Example usage for org.jsoup.nodes Node baseUri

List of usage examples for org.jsoup.nodes Node baseUri

Introduction

In this page you can find the example usage for org.jsoup.nodes Node baseUri.

Prototype

public abstract String baseUri();

Source Link

Document

Get the base URI of this node.

Usage

From source file:com.cognifide.aet.job.common.comparators.source.visitors.MarkupVisitor.java

@Override
public void visit(Node node) {
    if (node instanceof TextNode || node instanceof Comment || node instanceof DataNode) {
        node.replaceWith(new TextNode(StringUtils.EMPTY, node.baseUri()));
    }//w  w  w  .j a v  a2  s.c o m
}