
org.vaadin.viritin.layouts.MPanel Maven / Gradle / Ivy
package org.vaadin.viritin.layouts;
import com.vaadin.server.Resource;
import com.vaadin.ui.Component;
import com.vaadin.ui.Panel;
import org.vaadin.viritin.MSize;
/**
* Fluent Panel
*/
public class MPanel extends Panel{
private static final long serialVersionUID = -7384406421724902867L;
public MPanel() {
super();
}
public MPanel(Component content) {
super(content);
}
public MPanel(String caption) {
super(caption);
}
public MPanel(String caption, Component content) {
super(caption, content);
}
public MPanel withCaption(String caption) {
setCaption(caption);
return this;
}
public MPanel withContent(Component content) {
setContent(content);
return this;
}
public MPanel withCaptionAsHtml(boolean captionAsHtml) {
setCaptionAsHtml(captionAsHtml);
return this;
}
public MPanel withWidth(String width) {
setWidth(width);
return this;
}
public MPanel withWidth(float width, Unit unit) {
setWidth(width, unit);
return this;
}
public MPanel withFullWidth() {
setWidth("100%");
return this;
}
public MPanel withHeight(String height) {
setHeight(height);
return this;
}
public MPanel withHeight(float height, Unit unit) {
setHeight(height, unit);
return this;
}
public MPanel withFullHeight() {
setHeight("100%");
return this;
}
public MPanel withSize(MSize size) {
setWidth(size.getWidth(), size.getWidthUnit());
setHeight(size.getHeight(), size.getHeightUnit());
return this;
}
public MPanel withStyleName(String... styleNames) {
for (String styleName : styleNames) {
addStyleName(styleName);
}
return this;
}
public MPanel withIcon(Resource icon) {
setIcon(icon);
return this;
}
public MPanel withEnabled(boolean enabled) {
setEnabled(enabled);
return this;
}
public MPanel withVisible(boolean visible) {
setVisible(visible);
return this;
}
public MPanel withSizeUndefined() {
setSizeUndefined();
return this;
}
public MPanel withWidthUndefined() {
setWidthUndefined();
return this;
}
public MPanel withHeightUndefined() {
setHeightUndefined();
return this;
}
public MPanel withResponsive(boolean responsive) {
setResponsive(responsive);
return this;
}
public MPanel withId(String id) {
setId(id);
return this;
}
public MPanel withDescription(String description) {
setDescription(description);
return this;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy