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

com.github.mkolisnyk.aerial.document.AdditionalScenariosSection Maven / Gradle / Ivy

There is a newer version: 0.0.6.1
Show newest version
/**
 * .
 */
package com.github.mkolisnyk.aerial.document;

/**
 * @author Myk Kolisnyk
 *
 */
public class AdditionalScenariosSection extends
        DocumentSection {
    public AdditionalScenariosSection(DocumentSection container,
            String tagValue) {
        super(container, tagValue);
    }

    /**
     * @param container
     */
    public AdditionalScenariosSection(DocumentSection container) {
        super(container);
    }

    public AdditionalScenariosSection parse(String input) throws Exception {
        super.parse(input);
        return this;
    }

    public String generate() throws Exception {
        return this.getContent();
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy