Package org.netbeans.modules.php.fuel.modules

Examples of org.netbeans.modules.php.fuel.modules.FuelPhpModule.notifyPropertyChanged()


        boolean tempIsEnabled = panel.isFuelEnabled();
        if (tempIsEnabled != isEnabled) {
            FuelPhpPreferences.setEnabled(phpModule, tempIsEnabled);
            enumSet.add(Change.FRAMEWORK_CHANGE);
            FuelPhpModule fuelModule = FuelPhpModule.forPhpModule(phpModule);
            fuelModule.notifyPropertyChanged(new PropertyChangeEvent(this, FuelPhpModule.PROPERTY_CHANGE_FUEL, isValid, isValid));
        }

        boolean tempUseTestCaseMethod = panel.useTestCaseMethod();
        if (useTestCaseMethod != tempUseTestCaseMethod) {
            FuelPhpPreferences.setUseTestCaseMethod(phpModule, tempUseTestCaseMethod);
View Full Code Here


            @Override
            public void actionPerformed(ActionEvent e) {
                FuelPhpPreferences.setEnabled(phpModule, true);
                FuelPhpModule fuelModule = FuelPhpModule.forPhpModule(phpModule);
                phpModule.notifyPropertyChanged(new PropertyChangeEvent(this, PhpModule.PROPERTY_FRAMEWORKS, null, null));
                fuelModule.notifyPropertyChanged(new PropertyChangeEvent(this, FuelPhpModule.PROPERTY_CHANGE_FUEL, null, null));
                notification.clear();
            }
        }
    }
View Full Code Here

        for (Project project : openProjects) {
            PhpModule phpModule = PhpModule.Factory.lookupPhpModule(project);
            if (phpModule != null) {
                if (FuelUtils.isFuelPHP(phpModule)) {
                    FuelPhpModule fuelModule = FuelPhpModule.forPhpModule(phpModule);
                    fuelModule.notifyPropertyChanged(new PropertyChangeEvent(this, FuelPhpModule.PROPERTY_CHANGE_FUEL, null, null));
                }
            }
        }
    }
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.