org.jsimpledb.vaadin.app.HorizontalLine Maven / Gradle / Ivy
/*
* Copyright (C) 2015 Archie L. Cobbs. All rights reserved.
*/
package org.jsimpledb.vaadin.app;
import com.vaadin.server.Sizeable;
import com.vaadin.ui.Panel;
/**
* Simple horizontal line.
*/
@SuppressWarnings("serial")
public class HorizontalLine extends Panel {
public HorizontalLine(float height) {
this.addStyleName("jsdb-separator");
this.setWidth("100%");
this.setHeight(height, Sizeable.Unit.PIXELS);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy