All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.venky.swf.views.controls.page.buttons.Submit Maven / Gradle / Ivy

/*
 * To change this template, choose Tools | Templates
 * and open the template in the editor.
 */
package com.venky.swf.views.controls.page.buttons;

/**
 *
 * @author venky
 */
public class Submit extends Button{
    /**
	 * 
	 */
	private static final long serialVersionUID = 8489233083608975839L;
	public Submit(){
        this("Ok");
    }
    public Submit(String label){
        super();
        setProperty("type", "submit");
        setProperty("value", label);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy