Package test.comp.html

Source Code of test.comp.html.TestHTMLButtonLabel

/*
* TestHTMLButtonDefault.java
*
* Created on 28 de septiembre de 2007, 21:54
*
* To change this template, choose Tools | Template Manager
* and open the template in the editor.
*/

package test.comp.html;

import org.itsnat.comp.button.normal.ItsNatHTMLButtonLabel;
import org.itsnat.core.html.ItsNatHTMLDocument;

/**
*
* @author jmarranz
*/
public class TestHTMLButtonLabel extends TestHTMLButton
{

    /**
     * Creates a new instance of TestHTMLButtonDefault
     */
    public TestHTMLButtonLabel(ItsNatHTMLDocument itsNatDoc)
    {
        super(itsNatDoc);

        init("buttonLabelId");

        ItsNatHTMLButtonLabel button = (ItsNatHTMLButtonLabel)this.button;
        button.setLabelValue("Test Button With Label");
    }

}
TOP

Related Classes of test.comp.html.TestHTMLButtonLabel

TOP
Copyright © 2018 www.massapi.com. 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.