/* * $Id$ * * Copyright (C) 2000-2003 Idega Software. All Rights Reserved. * * This software is the proprietary information of Idega Software. * Use is subject to license terms. */ package com.idega.block.help.presentation; import com.idega.presentation.IWContext; import com.idega.presentation.ui.Window; /** * @author palli * * To change this generated comment go to * Window>Preferences>Java>Code Generation>Code and Comments */ public class HelpTreeWindow extends Window { public HelpTreeWindow() { super(); setResizable(true); setScrollbar(true); setHeight(300); setWidth(600); } public void main(IWContext iwc) { add(new HelpTree()); } }