com.viaoa.web.OABadge Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of oa Show documentation
Show all versions of oa Show documentation
Object Automation library
The newest version!
package com.viaoa.web;
import java.util.ArrayList;
import com.viaoa.hub.Hub;
import com.viaoa.util.OAString;
/**
* creates a bootstrap badge
* @author vvia
*/
public class OABadge extends OAHtmlElement {
public OABadge(String id, Hub hub, String propertyPath) {
super(id, hub, propertyPath);
addClass("badge");
}
}