org.devocative.wickomp.opt.OComponent Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of wickomp Show documentation
Show all versions of wickomp Show documentation
Web components for Apache Wicket
package org.devocative.wickomp.opt;
public abstract class OComponent extends Options {
private static final long serialVersionUID = -2440914930844225509L;
private Boolean fit;
private OSize height;
private OSize width;
public Boolean getFit() {
return fit;
}
public OComponent setFit(Boolean fit) {
this.fit = fit;
return this;
}
public OSize getHeight() {
return height;
}
public OComponent setHeight(OSize height) {
this.height = height;
return this;
}
public OSize getWidth() {
return width;
}
public OComponent setWidth(OSize width) {
this.width = width;
return this;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy