Package net.xoetrope.html

Examples of net.xoetrope.html.XLabel


        XTextArea text2 = (XTextArea)findComponent( "text2" );
        text2.setText( text1.getText() );
    }
   
    public void transmitLabel() {
        XLabel lab1 = (XLabel)findComponent( obj, "lab1" );
        XLabel lab2 = (XLabel)findComponent( "lab2" );
        lab2.setText( lab1.getText() );
    }
View Full Code Here


    }
       
    public void addRadio() {
        XPanel panel = (XPanel)findComponent( obj, "panel" );
        XRadioButton radio = new XRadioButton( "radio" );
        XLabel radio_txt = new XLabel( "New Radio Button", "radio_txt" );
        panel.add( radio.getHTMLElement() );
        panel.add( radio_txt.getHTMLElement() );
        radio.addEvent( radio.getHTMLElement().getId(), "alert", "ClICk");
    }
View Full Code Here

    }
       
    public void addCheck() {
        XPanel panel = (XPanel)findComponent( obj, "panel" );
        XCheckbox check = new XCheckbox( "check" );
        XLabel check_txt = new XLabel( "New Check Box", "check_txt" );
        panel.add( check.getHTMLElement() );
        panel.add( check_txt.getHTMLElement() );
    }
View Full Code Here

TOP

Related Classes of net.xoetrope.html.XLabel

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.