blob: f0a0d56328ecedc0d538fa2975f6d14537ad8c16 [file] [log] [blame]
package org.apache.flex.utilities.developerToolSuite.executor.domain {
import flash.utils.Dictionary;
import mx.collections.ArrayCollection;
public interface ISettingsModel extends ISettingsToSave {
function get javaEnabled():Boolean;
function get antEnabled():Boolean;
function get mavenEnabled():Boolean;
function get cygwinEnabled():Boolean;
function get svnEnabled():Boolean;
function get gitEnabled():Boolean;
function get availableLanguages():ArrayCollection;
function get environmentVariables():Dictionary;
function get currentLanguage():Object;
function get validationInProgress():ISettingsValidationInProgressModel;
}
}