Package org.odftoolkit.odfdom.dom.element.form

Examples of org.odftoolkit.odfdom.dom.element.form.FormRadioElement



  public FormControl createRadioButton(ControlContainer parent,
      FrameRectangle rectangle, String name, String label, String value) {
    String formId = generateFormId();
    FormRadioElement radioElement = mElement.newFormRadioElement("center",
        formId);
    // set default control properties
    RadioButton radioBtnForm = new RadioButton(radioElement);
    Component.registerComponent(radioBtnForm, radioElement);
    radioBtnForm.setId(formId);
View Full Code Here


      }
      nextElement.remove();
    }

    private RadioButton findNext(RadioButton thisRadioButton) {
      FormRadioElement nextRadioButton = null;
      if (thisRadioButton == null) {
        nextRadioButton = OdfElement.findFirstChildNode(
            FormRadioElement.class, containerElement);
      } else {
        nextRadioButton = OdfElement
View Full Code Here

TOP

Related Classes of org.odftoolkit.odfdom.dom.element.form.FormRadioElement

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.