01: package com.xoetrope.editor.netbeans.install;
02:
03: import com.xoetrope.carousel.install.*;
04: import org.openide.modules.ModuleInstall;
05:
06: /**
07: * An installer for the XuiPro module
08: * <p> Copyright (c) Xoetrope Ltd., 2001-2007, This software is licensed under
09: * the GNU Public License (GPL), please see license.txt for more details. If
10: * you make commercial use of this software you must purchase a commercial
11: * license from Xoetrope.</p>
12: * <p> $Revision: 1.21 $</p>
13: */
14: public class ModuleInstaller extends ModuleInstall {
15: public ModuleInstaller() {
16: }
17:
18: public void restored() {
19: XuiProProjectCheck.initializeModules(getClass()
20: .getClassLoader());
21: }
22:
23: }
|