package flexa.ff;

import flexa.fb.*;
import java.util.Map;
import java.util.HashMap;


public class window extends FComponent {
    
    public window() {
        super("ff.window");
    }

	public void event(String aAction, FContext aContext) throws Exception {
	    switch(aAction) {
            case "start":
                super.event("onopen", aContext);
                break;
	    }
	    Log.info("window event " + aAction);
	    //Log.info(aContext.toString());
	    super.event("onrefresh", aContext);
	    super.event(aAction, aContext);
	    Log.info(aContext.toString());
	}

}