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

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

The newest version!
package word.w2004.elements;

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


public class Heading3 extends AbstractHeading  implements IFluentElement{

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

    /***
     * @param The value of the paragraph
     * @return the Fluent @Heading2
     */
    public static Heading3 with(String string) {
        return new Heading3(string);
    }

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

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy