package se.idega.idegaweb.commune.school.presentation; import com.idega.presentation.IWContext; import com.idega.presentation.ui.Window; /** * @author laddi * * To change this generated comment edit the template variable "typecomment": * Window>Preferences>Java>Templates. * To enable and disable the creation of type comments go to * Window>Preferences>Java>Code Generation. */ public class SchoolAdminWindow extends Window { public SchoolAdminWindow() { this.setWidth(500); this.setHeight(350); this.setScrollbar(true); this.setResizable(true); this.setAllMargins(0); } /** * @see com.idega.presentation.PresentationObject#main(IWContext) */ public void main(IWContext iwc) throws Exception { add(new SchoolAdminOverview()); } }