| /* |
| * |
| * Licensed to the Apache Software Foundation (ASF) under one or more |
| * contributor license agreements. See the NOTICE file distributed with |
| * this work for additional information regarding copyright ownership. |
| * The ASF licenses this file to You under the Apache License, Version 2.0 |
| * (the "License"); you may not use this file except in compliance with |
| * the License. You may obtain a copy of the License at |
| * |
| * http://www.apache.org/licenses/LICENSE-2.0 |
| * |
| * Unless required by applicable law or agreed to in writing, software |
| * distributed under the License is distributed on an "AS IS" BASIS, |
| * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| * See the License for the specific language governing permissions and |
| * limitations under the License. |
| * |
| */ |
| |
| package flex2.compiler.mxml; |
| |
| import flex2.compiler.config.ServicesDependenciesWrapper; |
| import flex2.compiler.common.FontsConfiguration; |
| import flex2.compiler.io.VirtualFile; |
| |
| import java.util.List; |
| import java.util.Set; |
| |
| /** |
| * This interface is used to restrict consumers of |
| * CompilerConfiguration to mxml compiler specific options. |
| */ |
| public interface MxmlConfiguration |
| { |
| /** |
| * Generate SWFs for debugging. |
| */ |
| boolean debug(); |
| |
| /** |
| * Generate accessible SWFs. |
| */ |
| boolean accessible(); |
| |
| /** |
| * Write xxx-generated.as to disk. |
| */ |
| boolean keepGeneratedActionScript(); |
| |
| /** |
| * Enable runtime DesignLayer support. |
| */ |
| boolean enableRuntimeDesignLayers(); |
| |
| /** |
| * Enable swc version filtering (filer out swcs with |
| * minimumSupportedVersion > compatibility-version) |
| */ |
| boolean enableSwcVersionFiltering(); |
| |
| /** |
| * Controls whether unused type selectors are processed. |
| */ |
| boolean keepAllTypeSelectors(); |
| |
| String getGeneratedDirectory(); |
| |
| /** |
| * Controls whether invalid styles are report as errors or |
| * warnings. |
| */ |
| boolean reportInvalidStylesAsWarnings(); |
| |
| /** |
| * Controls whether warnings are displayed when a deprecated API is used. |
| */ |
| boolean showDeprecationWarnings(); |
| |
| /** |
| * Controls whether warnings are displayed when a deprecated API is used. |
| */ |
| boolean showBindingWarnings(); |
| |
| /** |
| * Controls whether warnings are displayed when styles, which |
| * don't apply to the current theme(s), are used in CSS. |
| */ |
| boolean showInvalidCssPropertyWarnings(); |
| |
| /** |
| * Controls whether warnings are displayed when an embedded font name |
| * shadows a device font name. |
| */ |
| boolean showShadowedDeviceFontWarnings(); |
| |
| /** |
| * Toggles whether warnings generated from unused type selectors are displayed. |
| */ |
| boolean showUnusedTypeSelectorWarnings(); |
| |
| /** |
| * Context path used to resolve {context.root} tokens in flex-enterprise-services.xml config file |
| */ |
| String getContextRoot(); |
| |
| /** |
| * Compiler-specific representation of flex-enterprise-services.xml config file |
| */ |
| ServicesDependenciesWrapper getServicesDependencies(); |
| |
| /** |
| * The compatibility version as a String. |
| */ |
| String getCompatibilityVersionString(); |
| |
| /** |
| * The compatibility version as a uint. |
| */ |
| int getCompatibilityVersion(); |
| |
| /** |
| * Determines whether CSS type selectors need to be qualified. |
| */ |
| boolean getQualifiedTypeSelectors(); |
| |
| /** |
| * Location of defaults.css stylesheet. |
| */ |
| VirtualFile getDefaultsCssUrl(); |
| |
| /** |
| * Location of SWC defaults.css stylesheets. |
| */ |
| List<VirtualFile> getDefaultsCssFiles(); |
| |
| /** |
| * Location of theme stylesheets. |
| */ |
| List<VirtualFile> getThemeCssFiles(); |
| |
| /** |
| * Path locations of source files. |
| */ |
| VirtualFile[] getSourcePath(); |
| |
| /** |
| * Path locations of component libraries, including swcs, mxml, and as components. |
| * Note: all SWCs found in the lib-path are merged together and resolved via priority and version. |
| * The order is ignored. |
| */ |
| VirtualFile[] getLibraryPath(); |
| |
| /** |
| * True if we are compiling against airglobal.swc. |
| */ |
| boolean getCompilingForAIR(); |
| |
| /** |
| * Provides settings for the Font Managers, their caches, and aliases for character |
| * ranges to embed for font face. |
| */ |
| FontsConfiguration getFontsConfiguration(); |
| void setFontsConfiguration(FontsConfiguration fc); |
| |
| boolean getGenerateAbstractSyntaxTree(); |
| |
| Set<String> getThemeNames(); |
| |
| /** |
| * Allow a style manager to have the same style declarations as |
| * their parent. |
| */ |
| boolean getAllowDuplicateDefaultStyleDeclarations(); |
| |
| /** |
| * Whether a missing required skin part should be considered an error or |
| * just be a warning. |
| */ |
| boolean reportMissingRequiredSkinPartsAsWarnings(); |
| } |