com.viaoa.jsp.OAButtonList 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.jsp;
import com.viaoa.hub.Hub;
/* *
* Adds a popup list to a button, and sets the button text to the selected value.
*
* Example:
*
* @author vvia
*/
public class OAButtonList extends OAPopupList {
public OAButtonList(String id, Hub hub, String propertyPath) {
super(id, hub, propertyPath, true);
}
public OAButtonList(String id, Hub hub, String propertyPath, int cols, int rows) {
super(id, hub, propertyPath, true, cols, rows);
}
public OAButtonList(String id, Hub hub, String propertyPath, String width, String height) {
super(id, hub, propertyPath, true, width, height);
}
}