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

cdc.gv.labels.GvCellAttributes Maven / Gradle / Ivy

There is a newer version: 0.100.2
Show newest version
package cdc.gv.labels;

public final class GvCellAttributes extends GvAttributes {
    public GvCellAttributes() {
        super(GvAttributeUsage.CELL);
    }

    @Override
    protected GvCellAttributes self() {
        return this;
    }

    @Override
    protected boolean isSupported(GvAttributeName name,
                                  GvAttributeUsage usage) {
        return name.isSupportedFor(usage);
    }

    @Override
    public GvCellAttributes setBAlign(GvAlign value) {
        return super.setBAlign(value);
    }

    @Override
    public GvCellAttributes setColSpan(int value) {
        return super.setColSpan(value);
    }

    @Override
    public GvCellAttributes setRowSpan(int value) {
        return super.setRowSpan(value);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy