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

org.nakedobjects.plugins.htmlviewer.html.Heading Maven / Gradle / Ivy

The newest version!
package org.nakedobjects.plugins.htmlviewer.html;

import java.io.PrintWriter;


public class Heading extends AbstractComponent {
    private final String title;
    private final int level;

    public Heading(final String title) {
        this(title, 1);
    }

    public Heading(final String title, final int level) {
        this.title = title;
        this.level = level;
    }

    public void write(final PrintWriter writer) {
        writeTag(writer, "h" + level);
        writer.print(title);
        writer.print("");
    }

}

// Copyright (c) Naked Objects Group Ltd.




© 2015 - 2025 Weber Informatics LLC | Privacy Policy