All Downloads are FREE. Search and download functionalities are using the official Maven repository.

crawlers.elements.UrlElement Maven / Gradle / Ivy

/*
 * To change this license header, choose License Headers in Project Properties.
 * To change this template file, choose Tools | Templates
 * and open the template in the editor.
 */
package crawlers.elements;

/**
 * The url element stores a possible url address.
 *
 * @author zua
 */
public class UrlElement extends ArticleElement {

    /**
     * Initializes the url element with the given value.
     *
     * @param value An url string.
     */
    public UrlElement(String value) {
        super(value);
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy