27282930313233
/** * Creates a new split button. */ public SplitButton() { this(new SplitButtonCell()); }
55565758596061
* Creates a new split button. * * @param text the button's text */ public SplitButton(String text) { this(new SplitButtonCell(), text); }
57585960616263