Permalink
Show file tree
Hide file tree
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
- Minor adjustments
git-svn-id: https://svn.apache.org/repos/asf/flex/whiteboard@1451103 13f79535-47bb-0310-9956-ffa450edef68
- Loading branch information
Showing
7 changed files
with
58 additions
and
57 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@@ -1,45 +1,6 @@ | ||
package org.apache.flex.utilities.developerToolSuite.executor.domain { | ||
import flash.utils.Dictionary; | ||
|
||
import mx.collections.ArrayCollection; | ||
|
||
[Bindable] | ||
public interface ISettingsModel { | ||
|
||
function get dbVersion():uint; | ||
|
||
function get appBounds():String; | ||
|
||
function get appDisplayState():String; | ||
|
||
function get availableLanguages():ArrayCollection; | ||
|
||
function get currentLanguage():Object; | ||
|
||
function get environmentVariables():Dictionary; | ||
|
||
function get locale():String; | ||
|
||
function get JAVA_HOME():String; | ||
|
||
function get ANT_HOME():String; | ||
|
||
function get MAVEN_HOME():String; | ||
|
||
function get CYGWIN_HOME():String; | ||
|
||
function get javaEnabled():Boolean; | ||
|
||
function get antEnabled():Boolean; | ||
|
||
function get mavenEnabled():Boolean; | ||
|
||
function get cygwinEnabled():Boolean; | ||
|
||
function get svnEnabled():Boolean; | ||
|
||
function get gitEnabled():Boolean; | ||
|
||
public interface ISettingsModel extends ISettingsToSave { | ||
function get validationInProgress():ISettingsValidationInProgressModel; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@@ -0,0 +1,42 @@ | ||
package org.apache.flex.utilities.developerToolSuite.executor.domain { | ||
import flash.utils.Dictionary; | ||
|
||
import mx.collections.ArrayCollection; | ||
|
||
public interface ISettingsToSave { | ||
|
||
function get dbVersion():uint; | ||
|
||
function get appBounds():String; | ||
|
||
function get appDisplayState():String; | ||
|
||
function get availableLanguages():ArrayCollection; | ||
|
||
function get currentLanguage():Object; | ||
|
||
function get environmentVariables():Dictionary; | ||
|
||
function get locale():String; | ||
|
||
function get JAVA_HOME():String; | ||
|
||
function get ANT_HOME():String; | ||
|
||
function get MAVEN_HOME():String; | ||
|
||
function get CYGWIN_HOME():String; | ||
|
||
function get javaEnabled():Boolean; | ||
|
||
function get antEnabled():Boolean; | ||
|
||
function get mavenEnabled():Boolean; | ||
|
||
function get cygwinEnabled():Boolean; | ||
|
||
function get svnEnabled():Boolean; | ||
|
||
function get gitEnabled():Boolean; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters