Main.java Source code

Java tutorial

Introduction

Here is the source code for Main.java

Source

//package com.java2s;

import org.jsoup.nodes.Document;
import org.jsoup.nodes.Element;

public class Main {
    public static Element getElement(Document doc, String id) {
        return doc.getElementById(id);
    }
}