// generated by FBuilder
package flexa.ff;
import flexa.fb.*;
import java.util.Map;
import java.util.HashMap;
import javax.script.*;
import java.util.ArrayList;
public class window extends FComponent {
    //
    // CONSTRUCTOR
    //
    public window() {
        super("ff.window");
    }
    
    // 
    // Methods
    //
    


    // 
    // Events
    //
	public void event(String aAction, FContext aContext) throws Exception {
        // Events
        
    
        // onopenevent EVENT
        if( LibText.stringToArray("start").contains(aAction) ) {
        			super.event("onopen", aContext);

        }
    


    
        // ALWAYS
        		Log.info("window event " + aAction);
		//Log.info(aContext.toString());
		super.event("onrefresh", aContext);

    


	    super.event(aAction, aContext);
	}
	
	
}