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

word.w2004.elements.Heading1 Maven / Gradle / Ivy

The newest version!
package word.w2004.elements;

import word.api.interfaces.IFluentElement;
import word.w2004.style.HeadingStyle;

public class Heading1 extends AbstractHeading implements IFluentElement { // implements IFluentElementStylable

    //Constructor
    private Heading1(String value){
        super("Heading1", value);
    }

    //this method is specific for each class. Constructor can be different...Don't know if we can make it generic
    /***
     * @param The value of the paragraph
     * @return the Fluent @Heading1
     */
    public static Heading1 with(String value) {
        return new Heading1(value);
    }

    @Override
    public Heading1 create() {
        return this;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy