crawlers.elements.ContentElement 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 content element possibly stores data corresponding the overview of an
* article element.
*
* @author zua
*/
public class ContentElement extends ArticleElement {
/**
* Initializes a new content element with the given value.
*
* @param value The value representing the content to store.
*/
public ContentElement(String value) {
super(value);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy