Changeset 48
- Timestamp:
- 06/24/08 15:31:38 (7 months ago)
- Files:
-
- axdt/trunk/org.axdt.as3/META-INF/MANIFEST.MF (modified) (1 diff)
- axdt/trunk/org.axdt.as3/plugin.xml (modified) (3 diffs)
- axdt/trunk/org.axdt.as3/src/org/axdt/as3/compiler/AS3CompilerTarget.java (modified) (2 diffs)
- axdt/trunk/org.axdt.as3/src/org/axdt/as3/imp/preferences/AS3.pfsp (modified) (2 diffs)
- axdt/trunk/org.axdt.as3/src/org/axdt/as3/imp/preferences/AS3Preferences.genparams (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
axdt/trunk/org.axdt.as3/META-INF/MANIFEST.MF
r43 r48 16 16 . 17 17 Export-Package: org.axdt.as3, 18 org.axdt.as3.compiler 18 org.axdt.as3.compiler, 19 org.axdt.as3.imp.preferences axdt/trunk/org.axdt.as3/plugin.xml
r43 r48 149 149 <perspectiveExtension 150 150 targetID="org.axdt.as3.perspective"> 151 <newWizardShortcut id="org.eclipse.ui.wizards.new.folder"/> 152 <newWizardShortcut id="org.eclipse.ui.wizards.new.file"/> 151 <newWizardShortcut 152 id="org.eclipse.ui.wizards.new.folder"> 153 </newWizardShortcut> 154 <newWizardShortcut 155 id="org.eclipse.ui.wizards.new.file"> 156 </newWizardShortcut> 153 157 <viewShortcut 154 158 id="org.eclipse.ui.console.ConsoleView"> … … 186 190 id="org.eclipse.ui.views.ContentOutline"> 187 191 </view> 188 <actionSet id="org.eclipse.debug.ui.launchActionSet"/> 192 <actionSet 193 id="org.eclipse.debug.ui.launchActionSet"> 194 </actionSet> 189 195 </perspectiveExtension> 190 196 </extension> … … 215 221 </page> 216 222 </extension> 217 <extension223 <extension 218 224 point="org.eclipse.ui.views"> 219 225 <category 220 id="org.axdt.views" 221 name="AXDT"/> 226 name="AXDT" 227 id="org.axdt.views"> 228 </category> 222 229 </extension> 223 230 </plugin> axdt/trunk/org.axdt.as3/src/org/axdt/as3/compiler/AS3CompilerTarget.java
r43 r48 5 5 import org.axdt.as3.AS3Plugin; 6 6 import org.axdt.as3.imp.preferences.AS3PreferencesConstants; 7 import org.eclipse.core.resources.IProject; 7 8 import org.eclipse.core.resources.IResource; 8 9 import org.eclipse.core.runtime.IPath; … … 66 67 this.context = context; 67 68 } 69 70 public IProject getProject() { 71 if (resource == null) return null; 72 return resource.getProject(); 73 } 68 74 } axdt/trunk/org.axdt.as3/src/org/axdt/as3/imp/preferences/AS3.pfsp
r31 r48 45 45 //boolean UseDefaultPreferencesTemplate { hasspecial true; defvalue true; } 46 46 boolean InheritSettings { defvalue true; } 47 dirlist FlexSDKPath { defvalue ""; }48 47 string SourcePaths { defvalue "src"; } 49 string AssetPaths { defvalue "asset"; }50 48 string DeployPath { defvalue "deploy"; } 49 boolean UseDefaultFlexConfig { defvalue true; } 50 file FlexConfig { emptyallowed true ""; defvalue ""; } 51 51 } 52 52 … … 55 55 // the value of designated boolean field 56 56 conditionals { 57 FlexSDKPath against InheritSettings;58 57 SourcePaths against InheritSettings; 59 AssetPaths against InheritSettings;60 58 DeployPath against InheritSettings; 59 FlexConfig against UseDefaultFlexConfig; 61 60 } 62 61 axdt/trunk/org.axdt.as3/src/org/axdt/as3/imp/preferences/AS3Preferences.genparams
r31 r48 4 4 PageId=org.axdt.as3.imp.preferences 5 5 PageMenuItem=TOP 6 Language=AS3 6 7 AlternativeMessage=Message omitted.
