package flexa.ff;

import flexa.fb.*;
import java.util.Map;
import java.util.HashMap;


public class button extends FComponent {
    
    public button() {
        super("ff.button");
    }

	public void event(String aAction, FContext aContext) throws Exception {
	    //Log.info("ff.button event " + aAction);
	    super.event(aAction, aContext);
	}

}