blob: 7b817e727ecc0a067ffd8491506d8a8074509f7e [file] [log] [blame]
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<!-- NewPage -->
<html lang="de">
<head>
<!-- Generated by javadoc (version 1.7.0_79) on Tue Sep 27 16:26:19 CEST 2016 -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Configuration (Apache Flex - FlexJS: Compiler: OEM Layer 0.8.0-SNAPSHOT API)</title>
<meta name="date" content="2016-09-27">
<link rel="stylesheet" type="text/css" href="../../../stylesheet.css" title="Style">
</head>
<body>
<script type="text/javascript"><!--
if (location.href.indexOf('is-external=true') == -1) {
parent.document.title="Configuration (Apache Flex - FlexJS: Compiler: OEM Layer 0.8.0-SNAPSHOT API)";
}
//-->
</script>
<noscript>
<div>JavaScript is disabled on your browser.</div>
</noscript>
<!-- ========= START OF TOP NAVBAR ======= -->
<div class="topNav"><a name="navbar_top">
<!-- -->
</a><a href="#skip-navbar_top" title="Skip navigation links"></a><a name="navbar_top_firstrow">
<!-- -->
</a>
<ul class="navList" title="Navigation">
<li><a href="../../../overview-summary.html">Overview</a></li>
<li><a href="package-summary.html">Package</a></li>
<li class="navBarCell1Rev">Class</li>
<li><a href="class-use/Configuration.html">Use</a></li>
<li><a href="package-tree.html">Tree</a></li>
<li><a href="../../../deprecated-list.html">Deprecated</a></li>
<li><a href="../../../index-all.html">Index</a></li>
<li><a href="../../../help-doc.html">Help</a></li>
</ul>
</div>
<div class="subNav">
<ul class="navList">
<li><a href="../../../flex2/compiler/common/CompilerConfiguration.html" title="class in flex2.compiler.common"><span class="strong">Prev Class</span></a></li>
<li><a href="../../../flex2/compiler/common/Configuration.RslPathInfo.html" title="class in flex2.compiler.common"><span class="strong">Next Class</span></a></li>
</ul>
<ul class="navList">
<li><a href="../../../index.html?flex2/compiler/common/Configuration.html" target="_top">Frames</a></li>
<li><a href="Configuration.html" target="_top">No Frames</a></li>
</ul>
<ul class="navList" id="allclasses_navbar_top">
<li><a href="../../../allclasses-noframe.html">All Classes</a></li>
</ul>
<div>
<script type="text/javascript"><!--
allClassesLink = document.getElementById("allclasses_navbar_top");
if(window==top) {
allClassesLink.style.display = "block";
}
else {
allClassesLink.style.display = "none";
}
//-->
</script>
</div>
<div>
<ul class="subNavList">
<li>Summary:&nbsp;</li>
<li><a href="#nested_class_summary">Nested</a>&nbsp;|&nbsp;</li>
<li><a href="#field_summary">Field</a>&nbsp;|&nbsp;</li>
<li><a href="#constructor_summary">Constr</a>&nbsp;|&nbsp;</li>
<li><a href="#method_summary">Method</a></li>
</ul>
<ul class="subNavList">
<li>Detail:&nbsp;</li>
<li><a href="#field_detail">Field</a>&nbsp;|&nbsp;</li>
<li><a href="#constructor_detail">Constr</a>&nbsp;|&nbsp;</li>
<li><a href="#method_detail">Method</a></li>
</ul>
</div>
<a name="skip-navbar_top">
<!-- -->
</a></div>
<!-- ========= END OF TOP NAVBAR ========= -->
<!-- ======== START OF CLASS DATA ======== -->
<div class="header">
<div class="subTitle">flex2.compiler.common</div>
<h2 title="Class Configuration" class="title">Class Configuration</h2>
</div>
<div class="contentContainer">
<ul class="inheritance">
<li><a href="http://docs.oracle.com/javase/6/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">java.lang.Object</a></li>
<li>
<ul class="inheritance">
<li>flex2.compiler.common.Configuration</li>
</ul>
</li>
</ul>
<div class="description">
<ul class="blockList">
<li class="blockList">
<dl>
<dt>All Implemented Interfaces:</dt>
<dd><a href="../../../flex2/linker/LinkerConfiguration.html" title="interface in flex2.linker">LinkerConfiguration</a>, <a href="http://docs.oracle.com/javase/6/docs/api/java/lang/Cloneable.html?is-external=true" title="class or interface in java.lang">Cloneable</a></dd>
</dl>
<dl>
<dt>Direct Known Subclasses:</dt>
<dd><a href="../../../flex2/tools/ToolsConfiguration.html" title="class in flex2.tools">ToolsConfiguration</a></dd>
</dl>
<hr>
<br>
<pre>public class <span class="strong">Configuration</span>
extends <a href="http://docs.oracle.com/javase/6/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">Object</a>
implements <a href="../../../flex2/linker/LinkerConfiguration.html" title="interface in flex2.linker">LinkerConfiguration</a>, <a href="http://docs.oracle.com/javase/6/docs/api/java/lang/Cloneable.html?is-external=true" title="class or interface in java.lang">Cloneable</a></pre>
<div class="block">Tools like mxmlc and compc use configuration objects to store
configuration options parsed from config files and command-line options.
The configuration object is produced by
flex2.tools.Mxmlc.processConfiguration().
This method can produce instances of various subclasses:
Configuration
ToolsConfiguration
ASDocConfiguration (for asdoc command-line tool)
CommandLineConfiguration (for mxmlc command-line tool)
CompcConfiguration (for compc command-line tool)
ApplicationCompilerConfiguration (for OEM ApplicationCompiler)
LibraryCompilerConfiguration (for OEM LibraryCompiler)
There are also "sub-configuration" classes such as
CompilerConfiguration and MetadataConfiguration.
Instances of these classes store dotted/nested config options.
For example, the -compiler.library-path command line option
(corresponding to <compiler><library-path>...</libraryPath></compiler>
in an XML config file) is stored in CompilerConfiguration,
which is owned by Configuration.
A configuration class does not have to extend Configuration
or implement any interface.
Instead, configuration objects get populated with configuration
information via reflection.
A configuration class declares that it support a particular
option such as -library-path / <library-path> simply by having
the public methods getLibraryPathInfo() and cfgLibraryPath().
(Note the change in spelling from library-path to LibraryPath.)
A method like getLibraryPathInfo() returns a ConfigurationInfo object
which has metadata about the option, such as its description,
whether it can have a single value or multiple values, etc.
After the ConfigurationBuffer has accumulated all ConfigurationValue
objects parsed from various source by "configurators"
such as DefaultsConfigurator, SystemPropertyConfiguration,
FileConfigurator, and CommandLineConfigurator, it pushes these
ConfigurationValues into the configuration objects that accept them
via methods like cfgLibraryPath().
The ConfigurationBuffer inspects the type of the second parameter
of this method and can pass, for example, a String array
in addition to the general ConfigurationValue.
Typically a cfgXXX() method will simply store the option value,
or some transformed version of it, in a private field such as
libraryPath.
A public method such as getLibraryPath() -- whose name doesn't
matter because it doesn't get called through reflection --
then exposes the option to the tool.
You can force one configuration option to be set before another,
and avoid race conditions, by using the
ConfigurationInfo.getSoftPrerequisites() method.</div>
<dl><dt><span class="strong">Author:</span></dt>
<dd>Roger Gonzalez, Gordon Smith (notes below)</dd></dl>
</li>
</ul>
</div>
<div class="summary">
<ul class="blockList">
<li class="blockList">
<!-- ======== NESTED CLASS SUMMARY ======== -->
<ul class="blockList">
<li class="blockList"><a name="nested_class_summary">
<!-- -->
</a>
<h3>Nested Class Summary</h3>
<table class="overviewSummary" border="0" cellpadding="3" cellspacing="0" summary="Nested Class Summary table, listing nested classes, and an explanation">
<caption><span>Nested Classes</span><span class="tabEnd">&nbsp;</span></caption>
<tr>
<th class="colFirst" scope="col">Modifier and Type</th>
<th class="colLast" scope="col">Class and Description</th>
</tr>
<tr class="altColor">
<td class="colFirst"><code>class&nbsp;</code></td>
<td class="colLast"><code><strong><a href="../../../flex2/compiler/common/Configuration.RslPathInfo.html" title="class in flex2.compiler.common">Configuration.RslPathInfo</a></strong></code>
<div class="block">Capture the information in one argument specifing -runtime-shared-libraries-path
information.</div>
</td>
</tr>
</table>
</li>
</ul>
<!-- =========== FIELD SUMMARY =========== -->
<ul class="blockList">
<li class="blockList"><a name="field_summary">
<!-- -->
</a>
<h3>Field Summary</h3>
<table class="overviewSummary" border="0" cellpadding="3" cellspacing="0" summary="Field Summary table, listing fields, and an explanation">
<caption><span>Fields</span><span class="tabEnd">&nbsp;</span></caption>
<tr>
<th class="colFirst" scope="col">Modifier and Type</th>
<th class="colLast" scope="col">Field and Description</th>
</tr>
<tr class="altColor">
<td class="colFirst"><code>protected <a href="../../../flex2/compiler/common/ConfigurationPathResolver.html" title="class in flex2.compiler.common">ConfigurationPathResolver</a></code></td>
<td class="colLast"><code><strong><a href="../../../flex2/compiler/common/Configuration.html#configResolver">configResolver</a></strong></code>&nbsp;</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>boolean</code></td>
<td class="colLast"><code><strong><a href="../../../flex2/compiler/common/Configuration.html#generateFrameLoader">generateFrameLoader</a></strong></code>&nbsp;</td>
</tr>
</table>
</li>
</ul>
<!-- ======== CONSTRUCTOR SUMMARY ======== -->
<ul class="blockList">
<li class="blockList"><a name="constructor_summary">
<!-- -->
</a>
<h3>Constructor Summary</h3>
<table class="overviewSummary" border="0" cellpadding="3" cellspacing="0" summary="Constructor Summary table, listing constructors, and an explanation">
<caption><span>Constructors</span><span class="tabEnd">&nbsp;</span></caption>
<tr>
<th class="colOne" scope="col">Constructor and Description</th>
</tr>
<tr class="altColor">
<td class="colOne"><code><strong><a href="../../../flex2/compiler/common/Configuration.html#Configuration()">Configuration</a></strong>()</code>&nbsp;</td>
</tr>
</table>
</li>
</ul>
<!-- ========== METHOD SUMMARY =========== -->
<ul class="blockList">
<li class="blockList"><a name="method_summary">
<!-- -->
</a>
<h3>Method Summary</h3>
<table class="overviewSummary" border="0" cellpadding="3" cellspacing="0" summary="Method Summary table, listing methods, and an explanation">
<caption><span>Methods</span><span class="tabEnd">&nbsp;</span></caption>
<tr>
<th class="colFirst" scope="col">Modifier and Type</th>
<th class="colLast" scope="col">Method and Description</th>
</tr>
<tr class="altColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><strong><a href="../../../flex2/compiler/common/Configuration.html#addCSSArchiveFiles(java.util.Map)">addCSSArchiveFiles</a></strong>(<a href="http://docs.oracle.com/javase/6/docs/api/java/util/Map.html?is-external=true" title="class or interface in java.util">Map</a>&lt;<a href="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>,<a href="../../../flex2/compiler/io/VirtualFile.html" title="interface in flex2.compiler.io">VirtualFile</a>&gt;&nbsp;m)</code>&nbsp;</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><strong><a href="../../../flex2/compiler/common/Configuration.html#addExterns(java.util.Collection)">addExterns</a></strong>(<a href="http://docs.oracle.com/javase/6/docs/api/java/util/Collection.html?is-external=true" title="class or interface in java.util">Collection</a>&lt;<a href="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&gt;&nbsp;externs)</code>&nbsp;</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><strong><a href="../../../flex2/compiler/common/Configuration.html#addExterns(flex2.compiler.util.QName[])">addExterns</a></strong>(<a href="../../../flex2/compiler/util/QName.html" title="class in flex2.compiler.util">QName</a>[]&nbsp;qNames)</code>&nbsp;</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><strong><a href="../../../flex2/compiler/common/Configuration.html#addIncludes(java.util.Collection)">addIncludes</a></strong>(<a href="http://docs.oracle.com/javase/6/docs/api/java/util/Collection.html?is-external=true" title="class or interface in java.util">Collection</a>&lt;<a href="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&gt;&nbsp;includes)</code>&nbsp;</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><strong><a href="../../../flex2/compiler/common/Configuration.html#addL10nArchiveFiles(java.util.Map)">addL10nArchiveFiles</a></strong>(<a href="http://docs.oracle.com/javase/6/docs/api/java/util/Map.html?is-external=true" title="class or interface in java.util">Map</a>&lt;<a href="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>,<a href="../../../flex2/compiler/io/VirtualFile.html" title="interface in flex2.compiler.io">VirtualFile</a>&gt;&nbsp;m)</code>&nbsp;</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>int</code></td>
<td class="colLast"><code><strong><a href="../../../flex2/compiler/common/Configuration.html#backgroundColor()">backgroundColor</a></strong>()</code>&nbsp;</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>boolean</code></td>
<td class="colLast"><code><strong><a href="../../../flex2/compiler/common/Configuration.html#benchmark()">benchmark</a></strong>()</code>&nbsp;</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><strong><a href="../../../flex2/compiler/common/Configuration.html#cfgBenchmark(flex2.compiler.config.ConfigurationValue,%20boolean)">cfgBenchmark</a></strong>(<a href="../../../flex2/compiler/config/ConfigurationValue.html" title="class in flex2.compiler.config">ConfigurationValue</a>&nbsp;cv,
boolean&nbsp;b)</code>&nbsp;</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><strong><a href="../../../flex2/compiler/common/Configuration.html#cfgBenchmarkCompilerDetails(flex2.compiler.config.ConfigurationValue,%20int)">cfgBenchmarkCompilerDetails</a></strong>(<a href="../../../flex2/compiler/config/ConfigurationValue.html" title="class in flex2.compiler.config">ConfigurationValue</a>&nbsp;cv,
int&nbsp;details)</code>&nbsp;</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><strong><a href="../../../flex2/compiler/common/Configuration.html#cfgBenchmarkTimeFilter(flex2.compiler.config.ConfigurationValue,%20long)">cfgBenchmarkTimeFilter</a></strong>(<a href="../../../flex2/compiler/config/ConfigurationValue.html" title="class in flex2.compiler.config">ConfigurationValue</a>&nbsp;cv,
long&nbsp;timeFilter)</code>&nbsp;</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><strong><a href="../../../flex2/compiler/common/Configuration.html#cfgDebugPassword(flex2.compiler.config.ConfigurationValue,%20java.lang.String)">cfgDebugPassword</a></strong>(<a href="../../../flex2/compiler/config/ConfigurationValue.html" title="class in flex2.compiler.config">ConfigurationValue</a>&nbsp;cv,
<a href="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;debugPassword)</code>&nbsp;</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><strong><a href="../../../flex2/compiler/common/Configuration.html#cfgDefaultBackgroundColor(flex2.compiler.config.ConfigurationValue,%20int)">cfgDefaultBackgroundColor</a></strong>(<a href="../../../flex2/compiler/config/ConfigurationValue.html" title="class in flex2.compiler.config">ConfigurationValue</a>&nbsp;cv,
int&nbsp;backgroundColor)</code>&nbsp;</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><strong><a href="../../../flex2/compiler/common/Configuration.html#cfgDefaultFrameRate(flex2.compiler.config.ConfigurationValue,%20int)">cfgDefaultFrameRate</a></strong>(<a href="../../../flex2/compiler/config/ConfigurationValue.html" title="class in flex2.compiler.config">ConfigurationValue</a>&nbsp;cv,
int&nbsp;rate)</code>&nbsp;</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><strong><a href="../../../flex2/compiler/common/Configuration.html#cfgDefaultScriptLimits(flex2.compiler.config.ConfigurationValue,%20int,%20int)">cfgDefaultScriptLimits</a></strong>(<a href="../../../flex2/compiler/config/ConfigurationValue.html" title="class in flex2.compiler.config">ConfigurationValue</a>&nbsp;cv,
int&nbsp;maxRecursionDepth,
int&nbsp;maxExecutionTime)</code>&nbsp;</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><strong><a href="../../../flex2/compiler/common/Configuration.html#cfgDefaultSize(flex2.compiler.config.ConfigurationValue,%20int,%20int)">cfgDefaultSize</a></strong>(<a href="../../../flex2/compiler/config/ConfigurationValue.html" title="class in flex2.compiler.config">ConfigurationValue</a>&nbsp;cv,
int&nbsp;width,
int&nbsp;height)</code>&nbsp;</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><strong><a href="../../../flex2/compiler/common/Configuration.html#cfgExterns(flex2.compiler.config.ConfigurationValue,%20java.util.List)">cfgExterns</a></strong>(<a href="../../../flex2/compiler/config/ConfigurationValue.html" title="class in flex2.compiler.config">ConfigurationValue</a>&nbsp;cfgval,
<a href="http://docs.oracle.com/javase/6/docs/api/java/util/List.html?is-external=true" title="class or interface in java.util">List</a>&lt;<a href="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&gt;&nbsp;vals)</code>&nbsp;</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><strong><a href="../../../flex2/compiler/common/Configuration.html#cfgFramework(flex2.compiler.config.ConfigurationValue,%20java.lang.String)">cfgFramework</a></strong>(<a href="../../../flex2/compiler/config/ConfigurationValue.html" title="class in flex2.compiler.config">ConfigurationValue</a>&nbsp;cv,
<a href="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;s)</code>&nbsp;</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><strong><a href="../../../flex2/compiler/common/Configuration.html#cfgGenerateFrameLoader(flex2.compiler.config.ConfigurationValue,%20boolean)">cfgGenerateFrameLoader</a></strong>(<a href="../../../flex2/compiler/config/ConfigurationValue.html" title="class in flex2.compiler.config">ConfigurationValue</a>&nbsp;cv,
boolean&nbsp;value)</code>&nbsp;</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><strong><a href="../../../flex2/compiler/common/Configuration.html#cfgIncludeInheritanceDependenciesOnly(flex2.compiler.config.ConfigurationValue,%20boolean)">cfgIncludeInheritanceDependenciesOnly</a></strong>(<a href="../../../flex2/compiler/config/ConfigurationValue.html" title="class in flex2.compiler.config">ConfigurationValue</a>&nbsp;cv,
boolean&nbsp;b)</code>&nbsp;</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><strong><a href="../../../flex2/compiler/common/Configuration.html#cfgIncludes(flex2.compiler.config.ConfigurationValue,%20java.util.List)">cfgIncludes</a></strong>(<a href="../../../flex2/compiler/config/ConfigurationValue.html" title="class in flex2.compiler.config">ConfigurationValue</a>&nbsp;cfgval,
<a href="http://docs.oracle.com/javase/6/docs/api/java/util/List.html?is-external=true" title="class or interface in java.util">List</a>&lt;<a href="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&gt;&nbsp;vals)</code>&nbsp;</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><strong><a href="../../../flex2/compiler/common/Configuration.html#cfgLazyInit(flex2.compiler.config.ConfigurationValue,%20boolean)">cfgLazyInit</a></strong>(<a href="../../../flex2/compiler/config/ConfigurationValue.html" title="class in flex2.compiler.config">ConfigurationValue</a>&nbsp;cv,
boolean&nbsp;b)</code>&nbsp;</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><strong><a href="../../../flex2/compiler/common/Configuration.html#cfgLinkReport(flex2.compiler.config.ConfigurationValue,%20java.lang.String)">cfgLinkReport</a></strong>(<a href="../../../flex2/compiler/config/ConfigurationValue.html" title="class in flex2.compiler.config">ConfigurationValue</a>&nbsp;cv,
<a href="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;filename)</code>&nbsp;</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><strong><a href="../../../flex2/compiler/common/Configuration.html#cfgLoadExterns(flex2.compiler.config.ConfigurationValue,%20java.lang.String)">cfgLoadExterns</a></strong>(<a href="../../../flex2/compiler/config/ConfigurationValue.html" title="class in flex2.compiler.config">ConfigurationValue</a>&nbsp;cfgval,
<a href="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;filename)</code>&nbsp;</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><strong><a href="../../../flex2/compiler/common/Configuration.html#cfgRawMetadata(flex2.compiler.config.ConfigurationValue,%20java.lang.String)">cfgRawMetadata</a></strong>(<a href="../../../flex2/compiler/config/ConfigurationValue.html" title="class in flex2.compiler.config">ConfigurationValue</a>&nbsp;cv,
<a href="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;xml)</code>&nbsp;</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><strong><a href="../../../flex2/compiler/common/Configuration.html#cfgRemoveUnusedRsls(flex2.compiler.config.ConfigurationValue,%20boolean)">cfgRemoveUnusedRsls</a></strong>(<a href="../../../flex2/compiler/config/ConfigurationValue.html" title="class in flex2.compiler.config">ConfigurationValue</a>&nbsp;cv,
boolean&nbsp;b)</code>&nbsp;</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><strong><a href="../../../flex2/compiler/common/Configuration.html#cfgResourceBundleList(flex2.compiler.config.ConfigurationValue,%20java.lang.String)">cfgResourceBundleList</a></strong>(<a href="../../../flex2/compiler/config/ConfigurationValue.html" title="class in flex2.compiler.config">ConfigurationValue</a>&nbsp;cv,
<a href="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;filename)</code>&nbsp;</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><strong><a href="../../../flex2/compiler/common/Configuration.html#cfgRuntimeSharedLibraries(flex2.compiler.config.ConfigurationValue,%20java.lang.String[])">cfgRuntimeSharedLibraries</a></strong>(<a href="../../../flex2/compiler/config/ConfigurationValue.html" title="class in flex2.compiler.config">ConfigurationValue</a>&nbsp;cfgval,
<a href="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>[]&nbsp;urls)</code>&nbsp;</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><strong><a href="../../../flex2/compiler/common/Configuration.html#cfgRuntimeSharedLibraryPath(flex2.compiler.config.ConfigurationValue,%20java.lang.String[])">cfgRuntimeSharedLibraryPath</a></strong>(<a href="../../../flex2/compiler/config/ConfigurationValue.html" title="class in flex2.compiler.config">ConfigurationValue</a>&nbsp;cfgval,
<a href="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>[]&nbsp;urls)</code>&nbsp;</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><strong><a href="../../../flex2/compiler/common/Configuration.html#cfgSizeReport(flex2.compiler.config.ConfigurationValue,%20java.lang.String)">cfgSizeReport</a></strong>(<a href="../../../flex2/compiler/config/ConfigurationValue.html" title="class in flex2.compiler.config">ConfigurationValue</a>&nbsp;cv,
<a href="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;filename)</code>&nbsp;</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><strong><a href="../../../flex2/compiler/common/Configuration.html#cfgStaticLinkRuntimeSharedLibraries(flex2.compiler.config.ConfigurationValue,%20boolean)">cfgStaticLinkRuntimeSharedLibraries</a></strong>(<a href="../../../flex2/compiler/config/ConfigurationValue.html" title="class in flex2.compiler.config">ConfigurationValue</a>&nbsp;cv,
boolean&nbsp;b)</code>&nbsp;</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><strong><a href="../../../flex2/compiler/common/Configuration.html#cfgSwcChecksum(flex2.compiler.config.ConfigurationValue,%20boolean)">cfgSwcChecksum</a></strong>(<a href="../../../flex2/compiler/config/ConfigurationValue.html" title="class in flex2.compiler.config">ConfigurationValue</a>&nbsp;cv,
boolean&nbsp;b)</code>&nbsp;</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><strong><a href="../../../flex2/compiler/common/Configuration.html#cfgSwfVersion(flex2.compiler.config.ConfigurationValue,%20int)">cfgSwfVersion</a></strong>(<a href="../../../flex2/compiler/config/ConfigurationValue.html" title="class in flex2.compiler.config">ConfigurationValue</a>&nbsp;cv,
int&nbsp;version)</code>&nbsp;</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><strong><a href="../../../flex2/compiler/common/Configuration.html#cfgTargetPlayer(flex2.compiler.config.ConfigurationValue,%20java.lang.String)">cfgTargetPlayer</a></strong>(<a href="../../../flex2/compiler/config/ConfigurationValue.html" title="class in flex2.compiler.config">ConfigurationValue</a>&nbsp;cv,
<a href="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;version)</code>&nbsp;</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><strong><a href="../../../flex2/compiler/common/Configuration.html#cfgUseDirectBlit(flex2.compiler.config.ConfigurationValue,%20boolean)">cfgUseDirectBlit</a></strong>(<a href="../../../flex2/compiler/config/ConfigurationValue.html" title="class in flex2.compiler.config">ConfigurationValue</a>&nbsp;cv,
boolean&nbsp;value)</code>&nbsp;</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><strong><a href="../../../flex2/compiler/common/Configuration.html#cfgUseGpu(flex2.compiler.config.ConfigurationValue,%20boolean)">cfgUseGpu</a></strong>(<a href="../../../flex2/compiler/config/ConfigurationValue.html" title="class in flex2.compiler.config">ConfigurationValue</a>&nbsp;cv,
boolean&nbsp;value)</code>&nbsp;</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><strong><a href="../../../flex2/compiler/common/Configuration.html#cfgUseNetwork(flex2.compiler.config.ConfigurationValue,%20boolean)">cfgUseNetwork</a></strong>(<a href="../../../flex2/compiler/config/ConfigurationValue.html" title="class in flex2.compiler.config">ConfigurationValue</a>&nbsp;cv,
boolean&nbsp;b)</code>&nbsp;</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><strong><a href="../../../flex2/compiler/common/Configuration.html#cfgVerifyDigests(flex2.compiler.config.ConfigurationValue,%20boolean)">cfgVerifyDigests</a></strong>(<a href="../../../flex2/compiler/config/ConfigurationValue.html" title="class in flex2.compiler.config">ConfigurationValue</a>&nbsp;cv,
boolean&nbsp;b)</code>&nbsp;</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code><a href="../../../flex2/compiler/common/Configuration.html" title="class in flex2.compiler.common">Configuration</a></code></td>
<td class="colLast"><code><strong><a href="../../../flex2/compiler/common/Configuration.html#clone()">clone</a></strong>()</code>&nbsp;</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>boolean</code></td>
<td class="colLast"><code><strong><a href="../../../flex2/compiler/common/Configuration.html#debug()">debug</a></strong>()</code>
<div class="block">Generate SWFs for debugging.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code><a href="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a></code></td>
<td class="colLast"><code><strong><a href="../../../flex2/compiler/common/Configuration.html#debugPassword()">debugPassword</a></strong>()</code>
<div class="block">The password to include in debuggable swfs.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>int</code></td>
<td class="colLast"><code><strong><a href="../../../flex2/compiler/common/Configuration.html#defaultHeight()">defaultHeight</a></strong>()</code>&nbsp;</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>int</code></td>
<td class="colLast"><code><strong><a href="../../../flex2/compiler/common/Configuration.html#defaultWidth()">defaultWidth</a></strong>()</code>&nbsp;</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>boolean</code></td>
<td class="colLast"><code><strong><a href="../../../flex2/compiler/common/Configuration.html#generateLinkReport()">generateLinkReport</a></strong>()</code>&nbsp;</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>boolean</code></td>
<td class="colLast"><code><strong><a href="../../../flex2/compiler/common/Configuration.html#generateRBList()">generateRBList</a></strong>()</code>&nbsp;</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>boolean</code></td>
<td class="colLast"><code><strong><a href="../../../flex2/compiler/common/Configuration.html#generateSizeReport()">generateSizeReport</a></strong>()</code>&nbsp;</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>boolean</code></td>
<td class="colLast"><code><strong><a href="../../../flex2/compiler/common/Configuration.html#getAdvancedTelemetry()">getAdvancedTelemetry</a></strong>()</code>&nbsp;</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>static <a href="http://docs.oracle.com/javase/6/docs/api/java/util/Map.html?is-external=true" title="class or interface in java.util">Map</a>&lt;<a href="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>,<a href="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&gt;</code></td>
<td class="colLast"><code><strong><a href="../../../flex2/compiler/common/Configuration.html#getAliases()">getAliases</a></strong>()</code>&nbsp;</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>static <a href="../../../flex2/compiler/io/VirtualFile.html" title="interface in flex2.compiler.io">VirtualFile</a>[]</code></td>
<td class="colLast"><code><strong><a href="../../../flex2/compiler/common/Configuration.html#getAllExcludedLibraries(flex2.compiler.common.CompilerConfiguration,%20flex2.compiler.common.Configuration)">getAllExcludedLibraries</a></strong>(<a href="../../../flex2/compiler/common/CompilerConfiguration.html" title="class in flex2.compiler.common">CompilerConfiguration</a>&nbsp;compilerConfig,
<a href="../../../flex2/compiler/common/Configuration.html" title="class in flex2.compiler.common">Configuration</a>&nbsp;configuration)</code>&nbsp;</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>int</code></td>
<td class="colLast"><code><strong><a href="../../../flex2/compiler/common/Configuration.html#getBenchmarkCompilerDetails()">getBenchmarkCompilerDetails</a></strong>()</code>&nbsp;</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>static <a href="../../../flex2/compiler/config/ConfigurationInfo.html" title="class in flex2.compiler.config">ConfigurationInfo</a></code></td>
<td class="colLast"><code><strong><a href="../../../flex2/compiler/common/Configuration.html#getBenchmarkCompilerDetailsInfo()">getBenchmarkCompilerDetailsInfo</a></strong>()</code>&nbsp;</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>static <a href="../../../flex2/compiler/config/ConfigurationInfo.html" title="class in flex2.compiler.config">ConfigurationInfo</a></code></td>
<td class="colLast"><code><strong><a href="../../../flex2/compiler/common/Configuration.html#getBenchmarkInfo()">getBenchmarkInfo</a></strong>()</code>&nbsp;</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>long</code></td>
<td class="colLast"><code><strong><a href="../../../flex2/compiler/common/Configuration.html#getBenchmarkTimeFilter()">getBenchmarkTimeFilter</a></strong>()</code>&nbsp;</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>static <a href="../../../flex2/compiler/config/ConfigurationInfo.html" title="class in flex2.compiler.config">ConfigurationInfo</a></code></td>
<td class="colLast"><code><strong><a href="../../../flex2/compiler/common/Configuration.html#getBenchmarkTimeFilterInfo()">getBenchmarkTimeFilterInfo</a></strong>()</code>&nbsp;</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>int</code></td>
<td class="colLast"><code><strong><a href="../../../flex2/compiler/common/Configuration.html#getCompatibilityVersion()">getCompatibilityVersion</a></strong>()</code>&nbsp;</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code><a href="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a></code></td>
<td class="colLast"><code><strong><a href="../../../flex2/compiler/common/Configuration.html#getCompatibilityVersionString()">getCompatibilityVersionString</a></strong>()</code>
<div class="block">The compatibility version specified in the configuration.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code><a href="../../../flex2/compiler/common/CompilerConfiguration.html" title="class in flex2.compiler.common">CompilerConfiguration</a></code></td>
<td class="colLast"><code><strong><a href="../../../flex2/compiler/common/Configuration.html#getCompilerConfiguration()">getCompilerConfiguration</a></strong>()</code>&nbsp;</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>boolean</code></td>
<td class="colLast"><code><strong><a href="../../../flex2/compiler/common/Configuration.html#getComputeDigest()">getComputeDigest</a></strong>()</code>&nbsp;</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code><a href="http://docs.oracle.com/javase/6/docs/api/java/util/Map.html?is-external=true" title="class or interface in java.util">Map</a>&lt;<a href="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>,<a href="../../../flex2/compiler/io/VirtualFile.html" title="interface in flex2.compiler.io">VirtualFile</a>&gt;</code></td>
<td class="colLast"><code><strong><a href="../../../flex2/compiler/common/Configuration.html#getCSSArchiveFiles()">getCSSArchiveFiles</a></strong>()</code>&nbsp;</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>static <a href="../../../flex2/compiler/config/ConfigurationInfo.html" title="class in flex2.compiler.config">ConfigurationInfo</a></code></td>
<td class="colLast"><code><strong><a href="../../../flex2/compiler/common/Configuration.html#getDebugPasswordInfo()">getDebugPasswordInfo</a></strong>()</code>&nbsp;</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>static <a href="../../../flex2/compiler/config/ConfigurationInfo.html" title="class in flex2.compiler.config">ConfigurationInfo</a></code></td>
<td class="colLast"><code><strong><a href="../../../flex2/compiler/common/Configuration.html#getDefaultBackgroundColorInfo()">getDefaultBackgroundColorInfo</a></strong>()</code>&nbsp;</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>static <a href="../../../flex2/compiler/config/ConfigurationInfo.html" title="class in flex2.compiler.config">ConfigurationInfo</a></code></td>
<td class="colLast"><code><strong><a href="../../../flex2/compiler/common/Configuration.html#getDefaultFrameRateInfo()">getDefaultFrameRateInfo</a></strong>()</code>&nbsp;</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>static <a href="../../../flex2/compiler/config/ConfigurationInfo.html" title="class in flex2.compiler.config">ConfigurationInfo</a></code></td>
<td class="colLast"><code><strong><a href="../../../flex2/compiler/common/Configuration.html#getDefaultScriptLimitsInfo()">getDefaultScriptLimitsInfo</a></strong>()</code>&nbsp;</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>static <a href="../../../flex2/compiler/config/ConfigurationInfo.html" title="class in flex2.compiler.config">ConfigurationInfo</a></code></td>
<td class="colLast"><code><strong><a href="../../../flex2/compiler/common/Configuration.html#getDefaultSizeInfo()">getDefaultSizeInfo</a></strong>()</code>&nbsp;</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code><a href="http://docs.oracle.com/javase/6/docs/api/java/util/Set.html?is-external=true" title="class or interface in java.util">Set</a>&lt;<a href="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&gt;</code></td>
<td class="colLast"><code><strong><a href="../../../flex2/compiler/common/Configuration.html#getExterns()">getExterns</a></strong>()</code>&nbsp;</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>static <a href="../../../flex2/compiler/config/ConfigurationInfo.html" title="class in flex2.compiler.config">ConfigurationInfo</a></code></td>
<td class="colLast"><code><strong><a href="../../../flex2/compiler/common/Configuration.html#getExternsInfo()">getExternsInfo</a></strong>()</code>&nbsp;</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code><a href="http://docs.oracle.com/javase/6/docs/api/java/util/List.html?is-external=true" title="class or interface in java.util">List</a>&lt;<a href="../../../flex2/compiler/common/FramesConfiguration.FrameInfo.html" title="class in flex2.compiler.common">FramesConfiguration.FrameInfo</a>&gt;</code></td>
<td class="colLast"><code><strong><a href="../../../flex2/compiler/common/Configuration.html#getFrameList()">getFrameList</a></strong>()</code>&nbsp;</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>int</code></td>
<td class="colLast"><code><strong><a href="../../../flex2/compiler/common/Configuration.html#getFrameRate()">getFrameRate</a></strong>()</code>&nbsp;</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code><a href="../../../flex2/compiler/common/FramesConfiguration.html" title="class in flex2.compiler.common">FramesConfiguration</a></code></td>
<td class="colLast"><code><strong><a href="../../../flex2/compiler/common/Configuration.html#getFramesConfiguration()">getFramesConfiguration</a></strong>()</code>&nbsp;</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code><a href="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a></code></td>
<td class="colLast"><code><strong><a href="../../../flex2/compiler/common/Configuration.html#getFramework()">getFramework</a></strong>()</code>&nbsp;</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>static <a href="../../../flex2/compiler/config/ConfigurationInfo.html" title="class in flex2.compiler.config">ConfigurationInfo</a></code></td>
<td class="colLast"><code><strong><a href="../../../flex2/compiler/common/Configuration.html#getGenerateFrameLoaderInfo()">getGenerateFrameLoaderInfo</a></strong>()</code>&nbsp;</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>boolean</code></td>
<td class="colLast"><code><strong><a href="../../../flex2/compiler/common/Configuration.html#getIncludeInheritanceDependenciesOnly()">getIncludeInheritanceDependenciesOnly</a></strong>()</code>&nbsp;</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>static <a href="../../../flex2/compiler/config/ConfigurationInfo.html" title="class in flex2.compiler.config">ConfigurationInfo</a></code></td>
<td class="colLast"><code><strong><a href="../../../flex2/compiler/common/Configuration.html#getIncludeInheritanceDependenciesOnlyInfo()">getIncludeInheritanceDependenciesOnlyInfo</a></strong>()</code>&nbsp;</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code><a href="http://docs.oracle.com/javase/6/docs/api/java/util/Set.html?is-external=true" title="class or interface in java.util">Set</a>&lt;<a href="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&gt;</code></td>
<td class="colLast"><code><strong><a href="../../../flex2/compiler/common/Configuration.html#getIncludes()">getIncludes</a></strong>()</code>&nbsp;</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>static <a href="../../../flex2/compiler/config/ConfigurationInfo.html" title="class in flex2.compiler.config">ConfigurationInfo</a></code></td>
<td class="colLast"><code><strong><a href="../../../flex2/compiler/common/Configuration.html#getIncludesInfo()">getIncludesInfo</a></strong>()</code>&nbsp;</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code><a href="http://docs.oracle.com/javase/6/docs/api/java/util/Map.html?is-external=true" title="class or interface in java.util">Map</a>&lt;<a href="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>,<a href="../../../flex2/compiler/io/VirtualFile.html" title="interface in flex2.compiler.io">VirtualFile</a>&gt;</code></td>
<td class="colLast"><code><strong><a href="../../../flex2/compiler/common/Configuration.html#getL10NArchiveFiles()">getL10NArchiveFiles</a></strong>()</code>&nbsp;</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>static <a href="../../../flex2/compiler/config/ConfigurationInfo.html" title="class in flex2.compiler.config">ConfigurationInfo</a></code></td>
<td class="colLast"><code><strong><a href="../../../flex2/compiler/common/Configuration.html#getLazyInitInfo()">getLazyInitInfo</a></strong>()</code>&nbsp;</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code><a href="../../../flex2/tools/LicensesConfiguration.html" title="class in flex2.tools">LicensesConfiguration</a></code></td>
<td class="colLast"><code><strong><a href="../../../flex2/compiler/common/Configuration.html#getLicensesConfiguration()">getLicensesConfiguration</a></strong>()</code>&nbsp;</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code><a href="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a></code></td>
<td class="colLast"><code><strong><a href="../../../flex2/compiler/common/Configuration.html#getLinkReportFileName()">getLinkReportFileName</a></strong>()</code>&nbsp;</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>static <a href="../../../flex2/compiler/config/ConfigurationInfo.html" title="class in flex2.compiler.config">ConfigurationInfo</a></code></td>
<td class="colLast"><code><strong><a href="../../../flex2/compiler/common/Configuration.html#getLinkReportInfo()">getLinkReportInfo</a></strong>()</code>&nbsp;</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>static <a href="../../../flex2/compiler/config/ConfigurationInfo.html" title="class in flex2.compiler.config">ConfigurationInfo</a></code></td>
<td class="colLast"><code><strong><a href="../../../flex2/compiler/common/Configuration.html#getLoadExternsInfo()">getLoadExternsInfo</a></strong>()</code>&nbsp;</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code><a href="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a></code></td>
<td class="colLast"><code><strong><a href="../../../flex2/compiler/common/Configuration.html#getMainDefinition()">getMainDefinition</a></strong>()</code>&nbsp;</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code><a href="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a></code></td>
<td class="colLast"><code><strong><a href="../../../flex2/compiler/common/Configuration.html#getMetadata()">getMetadata</a></strong>()</code>&nbsp;</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code><a href="../../../flex2/compiler/common/MetadataConfiguration.html" title="class in flex2.compiler.common">MetadataConfiguration</a></code></td>
<td class="colLast"><code><strong><a href="../../../flex2/compiler/common/Configuration.html#getMetadataConfiguration()">getMetadataConfiguration</a></strong>()</code>&nbsp;</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code><a href="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>[]</code></td>
<td class="colLast"><code><strong><a href="../../../flex2/compiler/common/Configuration.html#getMetadataToKeep()">getMetadataToKeep</a></strong>()</code>
<div class="block">Includes user specified metadata and extra metadata added by the linker.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>int</code></td>
<td class="colLast"><code><strong><a href="../../../flex2/compiler/common/Configuration.html#getMinimumSupportedVersion()">getMinimumSupportedVersion</a></strong>()</code>&nbsp;</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code><a href="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a></code></td>
<td class="colLast"><code><strong><a href="../../../flex2/compiler/common/Configuration.html#getMinimumSupportedVersionString()">getMinimumSupportedVersionString</a></strong>()</code>
<div class="block">The minimum supported library version specified in the configuration.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>static <a href="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a></code></td>
<td class="colLast"><code><strong><a href="../../../flex2/compiler/common/Configuration.html#getOutputPath(flex2.compiler.config.ConfigurationValue,%20java.lang.String)">getOutputPath</a></strong>(<a href="../../../flex2/compiler/config/ConfigurationValue.html" title="class in flex2.compiler.config">ConfigurationValue</a>&nbsp;cv,
<a href="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;fileName)</code>
<div class="block">The path of a given file name based on the context of the
configuration value or the default output directory token.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>boolean</code></td>
<td class="colLast"><code><strong><a href="../../../flex2/compiler/common/Configuration.html#getQualifiedTypeSelectors()">getQualifiedTypeSelectors</a></strong>()</code>&nbsp;</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>static <a href="../../../flex2/compiler/config/ConfigurationInfo.html" title="class in flex2.compiler.config">ConfigurationInfo</a></code></td>
<td class="colLast"><code><strong><a href="../../../flex2/compiler/common/Configuration.html#getRawMetadataInfo()">getRawMetadataInfo</a></strong>()</code>&nbsp;</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code><a href="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a></code></td>
<td class="colLast"><code><strong><a href="../../../flex2/compiler/common/Configuration.html#getRBListFileName()">getRBListFileName</a></strong>()</code>&nbsp;</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>boolean</code></td>
<td class="colLast"><code><strong><a href="../../../flex2/compiler/common/Configuration.html#getRemoveUnusedRsls()">getRemoveUnusedRsls</a></strong>()</code>&nbsp;</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>static <a href="../../../flex2/compiler/config/ConfigurationInfo.html" title="class in flex2.compiler.config">ConfigurationInfo</a></code></td>
<td class="colLast"><code><strong><a href="../../../flex2/compiler/common/Configuration.html#getRemoveUnusedRslsInfo()">getRemoveUnusedRslsInfo</a></strong>()</code>&nbsp;</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>static <a href="../../../flex2/compiler/config/ConfigurationInfo.html" title="class in flex2.compiler.config">ConfigurationInfo</a></code></td>
<td class="colLast"><code><strong><a href="../../../flex2/compiler/common/Configuration.html#getResourceBundleListInfo()">getResourceBundleListInfo</a></strong>()</code>&nbsp;</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code><a href="http://docs.oracle.com/javase/6/docs/api/java/util/SortedSet.html?is-external=true" title="class or interface in java.util">SortedSet</a>&lt;<a href="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&gt;</code></td>
<td class="colLast"><code><strong><a href="../../../flex2/compiler/common/Configuration.html#getResourceBundles()">getResourceBundles</a></strong>()</code>&nbsp;</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code><a href="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a></code></td>
<td class="colLast"><code><strong><a href="../../../flex2/compiler/common/Configuration.html#getRootClassName()">getRootClassName</a></strong>()</code>&nbsp;</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code><a href="../../../flex2/compiler/io/VirtualFile.html" title="interface in flex2.compiler.io">VirtualFile</a>[]</code></td>
<td class="colLast"><code><strong><a href="../../../flex2/compiler/common/Configuration.html#getRslExcludedLibraries()">getRslExcludedLibraries</a></strong>()</code>&nbsp;</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code><a href="http://docs.oracle.com/javase/6/docs/api/java/util/List.html?is-external=true" title="class or interface in java.util">List</a>&lt;<a href="../../../flex2/compiler/common/Configuration.RslPathInfo.html" title="class in flex2.compiler.common">Configuration.RslPathInfo</a>&gt;</code></td>
<td class="colLast"><code><strong><a href="../../../flex2/compiler/common/Configuration.html#getRslPathInfo()">getRslPathInfo</a></strong>()</code>&nbsp;</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code><a href="http://docs.oracle.com/javase/6/docs/api/java/util/List.html?is-external=true" title="class or interface in java.util">List</a>&lt;<a href="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&gt;</code></td>
<td class="colLast"><code><strong><a href="../../../flex2/compiler/common/Configuration.html#getRuntimeSharedLibraries()">getRuntimeSharedLibraries</a></strong>()</code>&nbsp;</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>static <a href="../../../flex2/compiler/config/ConfigurationInfo.html" title="class in flex2.compiler.config">ConfigurationInfo</a></code></td>
<td class="colLast"><code><strong><a href="../../../flex2/compiler/common/Configuration.html#getRuntimeSharedLibrariesInfo()">getRuntimeSharedLibrariesInfo</a></strong>()</code>&nbsp;</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>static <a href="../../../flex2/compiler/config/ConfigurationInfo.html" title="class in flex2.compiler.config">ConfigurationInfo</a></code></td>
<td class="colLast"><code><strong><a href="../../../flex2/compiler/common/Configuration.html#getRuntimeSharedLibraryPathInfo()">getRuntimeSharedLibraryPathInfo</a></strong>()</code>&nbsp;</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code><a href="../../../flex2/compiler/common/RuntimeSharedLibrarySettingsConfiguration.html" title="class in flex2.compiler.common">RuntimeSharedLibrarySettingsConfiguration</a></code></td>
<td class="colLast"><code><strong><a href="../../../flex2/compiler/common/Configuration.html#getRuntimeSharedLibrarySettingsConfiguration()">getRuntimeSharedLibrarySettingsConfiguration</a></strong>()</code>&nbsp;</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>int</code></td>
<td class="colLast"><code><strong><a href="../../../flex2/compiler/common/Configuration.html#getScriptRecursionLimit()">getScriptRecursionLimit</a></strong>()</code>&nbsp;</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>int</code></td>
<td class="colLast"><code><strong><a href="../../../flex2/compiler/common/Configuration.html#getScriptTimeLimit()">getScriptTimeLimit</a></strong>()</code>&nbsp;</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code><a href="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a></code></td>
<td class="colLast"><code><strong><a href="../../../flex2/compiler/common/Configuration.html#getSizeReportFileName()">getSizeReportFileName</a></strong>()</code>&nbsp;</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>static <a href="../../../flex2/compiler/config/ConfigurationInfo.html" title="class in flex2.compiler.config">ConfigurationInfo</a></code></td>
<td class="colLast"><code><strong><a href="../../../flex2/compiler/common/Configuration.html#getSizeReportInfo()">getSizeReportInfo</a></strong>()</code>&nbsp;</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>boolean</code></td>
<td class="colLast"><code><strong><a href="../../../flex2/compiler/common/Configuration.html#getStaticLinkRsl()">getStaticLinkRsl</a></strong>()</code>&nbsp;</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>static <a href="../../../flex2/compiler/config/ConfigurationInfo.html" title="class in flex2.compiler.config">ConfigurationInfo</a></code></td>
<td class="colLast"><code><strong><a href="../../../flex2/compiler/common/Configuration.html#getSwcChecksumInfo()">getSwcChecksumInfo</a></strong>()</code>&nbsp;</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>int</code></td>
<td class="colLast"><code><strong><a href="../../../flex2/compiler/common/Configuration.html#getSwfVersion()">getSwfVersion</a></strong>()</code>&nbsp;</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>static <a href="../../../flex2/compiler/config/ConfigurationInfo.html" title="class in flex2.compiler.config">ConfigurationInfo</a></code></td>
<td class="colLast"><code><strong><a href="../../../flex2/compiler/common/Configuration.html#getTargetPlayerInfo()">getTargetPlayerInfo</a></strong>()</code>&nbsp;</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>int</code></td>
<td class="colLast"><code><strong><a href="../../../flex2/compiler/common/Configuration.html#getTargetPlayerMajorVersion()">getTargetPlayerMajorVersion</a></strong>()</code>&nbsp;</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>int</code></td>
<td class="colLast"><code><strong><a href="../../../flex2/compiler/common/Configuration.html#getTargetPlayerMinorVersion()">getTargetPlayerMinorVersion</a></strong>()</code>&nbsp;</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code><a href="../../../macromedia/asc/util/ObjectList.html" title="class in macromedia.asc.util">ObjectList</a>&lt;<a href="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&gt;</code></td>
<td class="colLast"><code><strong><a href="../../../flex2/compiler/common/Configuration.html#getTargetPlayerRequiredUseNamespaces()">getTargetPlayerRequiredUseNamespaces</a></strong>()</code>
<div class="block">Returns an ObjectList filled with the correct namespaces that need to be
automagically opened for the current target player, e.g. flash10.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>static <a href="../../../macromedia/asc/util/ObjectList.html" title="class in macromedia.asc.util">ObjectList</a>&lt;<a href="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&gt;</code></td>
<td class="colLast"><code><strong><a href="../../../flex2/compiler/common/Configuration.html#getTargetPlayerRequiredUseNamespaces(int)">getTargetPlayerRequiredUseNamespaces</a></strong>(int&nbsp;targetPlayerMajorVersion)</code>
<div class="block">Returns an ObjectList filled with the correct namespaces that need to be
automagically opened for the current target player, e.g. flash10.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>int</code></td>
<td class="colLast"><code><strong><a href="../../../flex2/compiler/common/Configuration.html#getTargetPlayerRevision()">getTargetPlayerRevision</a></strong>()</code>&nbsp;</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>int</code></td>
<td class="colLast"><code><strong><a href="../../../flex2/compiler/common/Configuration.html#getTargetPlayerTargetAVM()">getTargetPlayerTargetAVM</a></strong>()</code>
<div class="block">Returns the correct macromedia.asc.embedding.avmplus.Features.TARGET_AVM*
for the current target player.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>static int</code></td>
<td class="colLast"><code><strong><a href="../../../flex2/compiler/common/Configuration.html#getTargetPlayerTargetAVM(int)">getTargetPlayerTargetAVM</a></strong>(int&nbsp;targetPlayerMajorVersion)</code>
<div class="block">Returns the correct macromedia.asc.embedding.avmplus.Features.TARGET_AVM*
for the given target player major revision (e.g. 10).</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code><a href="http://docs.oracle.com/javase/6/docs/api/java/util/Set.html?is-external=true" title="class or interface in java.util">Set</a>&lt;<a href="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&gt;</code></td>
<td class="colLast"><code><strong><a href="../../../flex2/compiler/common/Configuration.html#getUnresolved()">getUnresolved</a></strong>()</code>&nbsp;</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>boolean</code></td>
<td class="colLast"><code><strong><a href="../../../flex2/compiler/common/Configuration.html#getUseDirectBlit()">getUseDirectBlit</a></strong>()</code>&nbsp;</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>boolean</code></td>
<td class="colLast"><code><strong><a href="../../../flex2/compiler/common/Configuration.html#getUseGpu()">getUseGpu</a></strong>()</code>&nbsp;</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>boolean</code></td>
<td class="colLast"><code><strong><a href="../../../flex2/compiler/common/Configuration.html#getVerifyDigests()">getVerifyDigests</a></strong>()</code>&nbsp;</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>static <a href="../../../flex2/compiler/config/ConfigurationInfo.html" title="class in flex2.compiler.config">ConfigurationInfo</a></code></td>
<td class="colLast"><code><strong><a href="../../../flex2/compiler/common/Configuration.html#getVerifyDigestsInfo()">getVerifyDigestsInfo</a></strong>()</code>&nbsp;</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code><a href="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a></code></td>
<td class="colLast"><code><strong><a href="../../../flex2/compiler/common/Configuration.html#height()">height</a></strong>()</code>
<div class="block">SWF height</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code><a href="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a></code></td>
<td class="colLast"><code><strong><a href="../../../flex2/compiler/common/Configuration.html#heightPercent()">heightPercent</a></strong>()</code>
<div class="block">SWF height percentage</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>boolean</code></td>
<td class="colLast"><code><strong><a href="../../../flex2/compiler/common/Configuration.html#isSwcChecksumEnabled()">isSwcChecksumEnabled</a></strong>()</code>&nbsp;</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>boolean</code></td>
<td class="colLast"><code><strong><a href="../../../flex2/compiler/common/Configuration.html#lazyInit()">lazyInit</a></strong>()</code>&nbsp;</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>boolean</code></td>
<td class="colLast"><code><strong><a href="../../../flex2/compiler/common/Configuration.html#optimize()">optimize</a></strong>()</code>&nbsp;</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code><a href="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a></code></td>
<td class="colLast"><code><strong><a href="../../../flex2/compiler/common/Configuration.html#pageTitle()">pageTitle</a></strong>()</code>
<div class="block">browser page title</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><strong><a href="../../../flex2/compiler/common/Configuration.html#removeExterns(java.util.Collection)">removeExterns</a></strong>(<a href="http://docs.oracle.com/javase/6/docs/api/java/util/Collection.html?is-external=true" title="class or interface in java.util">Collection</a>&lt;<a href="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&gt;&nbsp;externs)</code>&nbsp;</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>boolean</code></td>
<td class="colLast"><code><strong><a href="../../../flex2/compiler/common/Configuration.html#scriptLimitsSet()">scriptLimitsSet</a></strong>()</code>&nbsp;</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><strong><a href="../../../flex2/compiler/common/Configuration.html#setAdvancedTelemetry(boolean)">setAdvancedTelemetry</a></strong>(boolean&nbsp;enableTelemetry)</code>
<div class="block">Configures the LocalizationManager's locale, which is used when
reporting compile time errors, warnings, and info.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><strong><a href="../../../flex2/compiler/common/Configuration.html#setBackgroundColor(int)">setBackgroundColor</a></strong>(int&nbsp;backgroundColor)</code>&nbsp;</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><strong><a href="../../../flex2/compiler/common/Configuration.html#setConfigPathResolver(flex2.compiler.common.ConfigurationPathResolver)">setConfigPathResolver</a></strong>(<a href="../../../flex2/compiler/common/ConfigurationPathResolver.html" title="class in flex2.compiler.common">ConfigurationPathResolver</a>&nbsp;resolver)</code>&nbsp;</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><strong><a href="../../../flex2/compiler/common/Configuration.html#setDebug(boolean)">setDebug</a></strong>(boolean&nbsp;debug)</code>&nbsp;</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><strong><a href="../../../flex2/compiler/common/Configuration.html#setDebugPassword(java.lang.String)">setDebugPassword</a></strong>(<a href="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;debugPassword)</code>&nbsp;</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><strong><a href="../../../flex2/compiler/common/Configuration.html#setFrameRate(int)">setFrameRate</a></strong>(int&nbsp;rate)</code>&nbsp;</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><strong><a href="../../../flex2/compiler/common/Configuration.html#setHeight(java.lang.String)">setHeight</a></strong>(<a href="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;height)</code>&nbsp;</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><strong><a href="../../../flex2/compiler/common/Configuration.html#setHeightPercent(java.lang.String)">setHeightPercent</a></strong>(<a href="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;heightPercent)</code>&nbsp;</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><strong><a href="../../../flex2/compiler/common/Configuration.html#setMainDefinition(java.lang.String)">setMainDefinition</a></strong>(<a href="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;mainDefinition)</code>&nbsp;</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><strong><a href="../../../flex2/compiler/common/Configuration.html#setOptimize(boolean)">setOptimize</a></strong>(boolean&nbsp;optimize)</code>&nbsp;</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>protected void</code></td>
<td class="colLast"><code><strong><a href="../../../flex2/compiler/common/Configuration.html#setOverrideStaticLinkRsl(boolean)">setOverrideStaticLinkRsl</a></strong>(boolean&nbsp;staticLinkRsl)</code>
<div class="block">Allow another option, namely -rslp to override the value of
static-rsls.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><strong><a href="../../../flex2/compiler/common/Configuration.html#setPageTitle(java.lang.String)">setPageTitle</a></strong>(<a href="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;title)</code>&nbsp;</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><strong><a href="../../../flex2/compiler/common/Configuration.html#setRootClassName(java.lang.String)">setRootClassName</a></strong>(<a href="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;rootClassName)</code>&nbsp;</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><strong><a href="../../../flex2/compiler/common/Configuration.html#setScriptRecursionLimit(int)">setScriptRecursionLimit</a></strong>(int&nbsp;recursionLimit)</code>&nbsp;</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><strong><a href="../../../flex2/compiler/common/Configuration.html#setScriptTimeLimit(int)">setScriptTimeLimit</a></strong>(int&nbsp;scriptLimit)</code>&nbsp;</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><strong><a href="../../../flex2/compiler/common/Configuration.html#setSwfVersion(int)">setSwfVersion</a></strong>(int&nbsp;version)</code>&nbsp;</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><strong><a href="../../../flex2/compiler/common/Configuration.html#setUseDirectBlit(boolean)">setUseDirectBlit</a></strong>(boolean&nbsp;value)</code>&nbsp;</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><strong><a href="../../../flex2/compiler/common/Configuration.html#setUseGpu(boolean)">setUseGpu</a></strong>(boolean&nbsp;value)</code>&nbsp;</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><strong><a href="../../../flex2/compiler/common/Configuration.html#setWidth(java.lang.String)">setWidth</a></strong>(<a href="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;width)</code>&nbsp;</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><strong><a href="../../../flex2/compiler/common/Configuration.html#setWidthPercent(java.lang.String)">setWidthPercent</a></strong>(<a href="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;widthPercent)</code>&nbsp;</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>protected <a href="http://docs.oracle.com/javase/6/docs/api/java/util/List.html?is-external=true" title="class or interface in java.util">List</a>&lt;<a href="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&gt;</code></td>
<td class="colLast"><code><strong><a href="../../../flex2/compiler/common/Configuration.html#toQNameString(java.util.List)">toQNameString</a></strong>(<a href="http://docs.oracle.com/javase/6/docs/api/java/util/List.html?is-external=true" title="class or interface in java.util">List</a>&lt;<a href="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&gt;&nbsp;vals)</code>&nbsp;</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>boolean</code></td>
<td class="colLast"><code><strong><a href="../../../flex2/compiler/common/Configuration.html#useNetwork()">useNetwork</a></strong>()</code>&nbsp;</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>boolean</code></td>
<td class="colLast"><code><strong><a href="../../../flex2/compiler/common/Configuration.html#verboseStacktraces()">verboseStacktraces</a></strong>()</code>&nbsp;</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code><a href="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a></code></td>
<td class="colLast"><code><strong><a href="../../../flex2/compiler/common/Configuration.html#width()">width</a></strong>()</code>
<div class="block">SWF width</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code><a href="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a></code></td>
<td class="colLast"><code><strong><a href="../../../flex2/compiler/common/Configuration.html#widthPercent()">widthPercent</a></strong>()</code>
<div class="block">SWF width percentage</div>
</td>
</tr>
</table>
<ul class="blockList">
<li class="blockList"><a name="methods_inherited_from_class_java.lang.Object">
<!-- -->
</a>
<h3>Methods inherited from class&nbsp;java.lang.<a href="http://docs.oracle.com/javase/6/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">Object</a></h3>
<code><a href="http://docs.oracle.com/javase/6/docs/api/java/lang/Object.html?is-external=true#equals(java.lang.Object)" title="class or interface in java.lang">equals</a>, <a href="http://docs.oracle.com/javase/6/docs/api/java/lang/Object.html?is-external=true#finalize()" title="class or interface in java.lang">finalize</a>, <a href="http://docs.oracle.com/javase/6/docs/api/java/lang/Object.html?is-external=true#getClass()" title="class or interface in java.lang">getClass</a>, <a href="http://docs.oracle.com/javase/6/docs/api/java/lang/Object.html?is-external=true#hashCode()" title="class or interface in java.lang">hashCode</a>, <a href="http://docs.oracle.com/javase/6/docs/api/java/lang/Object.html?is-external=true#notify()" title="class or interface in java.lang">notify</a>, <a href="http://docs.oracle.com/javase/6/docs/api/java/lang/Object.html?is-external=true#notifyAll()" title="class or interface in java.lang">notifyAll</a>, <a href="http://docs.oracle.com/javase/6/docs/api/java/lang/Object.html?is-external=true#toString()" title="class or interface in java.lang">toString</a>, <a href="http://docs.oracle.com/javase/6/docs/api/java/lang/Object.html?is-external=true#wait()" title="class or interface in java.lang">wait</a>, <a href="http://docs.oracle.com/javase/6/docs/api/java/lang/Object.html?is-external=true#wait(long)" title="class or interface in java.lang">wait</a>, <a href="http://docs.oracle.com/javase/6/docs/api/java/lang/Object.html?is-external=true#wait(long,%20int)" title="class or interface in java.lang">wait</a></code></li>
</ul>
</li>
</ul>
</li>
</ul>
</div>
<div class="details">
<ul class="blockList">
<li class="blockList">
<!-- ============ FIELD DETAIL =========== -->
<ul class="blockList">
<li class="blockList"><a name="field_detail">
<!-- -->
</a>
<h3>Field Detail</h3>
<a name="configResolver">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>configResolver</h4>
<pre>protected&nbsp;<a href="../../../flex2/compiler/common/ConfigurationPathResolver.html" title="class in flex2.compiler.common">ConfigurationPathResolver</a> configResolver</pre>
</li>
</ul>
<a name="generateFrameLoader">
<!-- -->
</a>
<ul class="blockListLast">
<li class="blockList">
<h4>generateFrameLoader</h4>
<pre>public&nbsp;boolean generateFrameLoader</pre>
</li>
</ul>
</li>
</ul>
<!-- ========= CONSTRUCTOR DETAIL ======== -->
<ul class="blockList">
<li class="blockList"><a name="constructor_detail">
<!-- -->
</a>
<h3>Constructor Detail</h3>
<a name="Configuration()">
<!-- -->
</a>
<ul class="blockListLast">
<li class="blockList">
<h4>Configuration</h4>
<pre>public&nbsp;Configuration()</pre>
</li>
</ul>
</li>
</ul>
<!-- ============ METHOD DETAIL ========== -->
<ul class="blockList">
<li class="blockList"><a name="method_detail">
<!-- -->
</a>
<h3>Method Detail</h3>
<a name="getAllExcludedLibraries(flex2.compiler.common.CompilerConfiguration, flex2.compiler.common.Configuration)">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>getAllExcludedLibraries</h4>
<pre>public static&nbsp;<a href="../../../flex2/compiler/io/VirtualFile.html" title="interface in flex2.compiler.io">VirtualFile</a>[]&nbsp;getAllExcludedLibraries(<a href="../../../flex2/compiler/common/CompilerConfiguration.html" title="class in flex2.compiler.common">CompilerConfiguration</a>&nbsp;compilerConfig,
<a href="../../../flex2/compiler/common/Configuration.html" title="class in flex2.compiler.common">Configuration</a>&nbsp;configuration)</pre>
<dl><dt><span class="strong">Parameters:</span></dt><dd><code>compilerConfig</code> - - may not be null</dd><dd><code>configuration</code> - - may be null</dd>
<dt><span class="strong">Returns:</span></dt><dd>excluded libraries summed from all configuration options</dd></dl>
</li>
</ul>
<a name="getOutputPath(flex2.compiler.config.ConfigurationValue, java.lang.String)">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>getOutputPath</h4>
<pre>public static&nbsp;<a href="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;getOutputPath(<a href="../../../flex2/compiler/config/ConfigurationValue.html" title="class in flex2.compiler.config">ConfigurationValue</a>&nbsp;cv,
<a href="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;fileName)</pre>
<div class="block">The path of a given file name based on the context of the
configuration value or the default output directory token.</div>
<dl><dt><span class="strong">Parameters:</span></dt><dd><code>cv</code> - </dd><dd><code>fileName</code> - </dd>
<dt><span class="strong">Returns:</span></dt><dd>the full path of the file.</dd></dl>
</li>
</ul>
<a name="setConfigPathResolver(flex2.compiler.common.ConfigurationPathResolver)">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>setConfigPathResolver</h4>
<pre>public&nbsp;void&nbsp;setConfigPathResolver(<a href="../../../flex2/compiler/common/ConfigurationPathResolver.html" title="class in flex2.compiler.common">ConfigurationPathResolver</a>&nbsp;resolver)</pre>
</li>
</ul>
<a name="getAliases()">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>getAliases</h4>
<pre>public static&nbsp;<a href="http://docs.oracle.com/javase/6/docs/api/java/util/Map.html?is-external=true" title="class or interface in java.util">Map</a>&lt;<a href="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>,<a href="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&gt;&nbsp;getAliases()</pre>
</li>
</ul>
<a name="width()">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>width</h4>
<pre>public&nbsp;<a href="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;width()</pre>
<div class="block"><strong>Description copied from interface:&nbsp;<code><a href="../../../flex2/linker/LinkerConfiguration.html#width()">LinkerConfiguration</a></code></strong></div>
<div class="block">SWF width</div>
<dl>
<dt><strong>Specified by:</strong></dt>
<dd><code><a href="../../../flex2/linker/LinkerConfiguration.html#width()">width</a></code>&nbsp;in interface&nbsp;<code><a href="../../../flex2/linker/LinkerConfiguration.html" title="interface in flex2.linker">LinkerConfiguration</a></code></dd>
</dl>
</li>
</ul>
<a name="widthPercent()">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>widthPercent</h4>
<pre>public&nbsp;<a href="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;widthPercent()</pre>
<div class="block"><strong>Description copied from interface:&nbsp;<code><a href="../../../flex2/linker/LinkerConfiguration.html#widthPercent()">LinkerConfiguration</a></code></strong></div>
<div class="block">SWF width percentage</div>
<dl>
<dt><strong>Specified by:</strong></dt>
<dd><code><a href="../../../flex2/linker/LinkerConfiguration.html#widthPercent()">widthPercent</a></code>&nbsp;in interface&nbsp;<code><a href="../../../flex2/linker/LinkerConfiguration.html" title="interface in flex2.linker">LinkerConfiguration</a></code></dd>
</dl>
</li>
</ul>
<a name="setWidth(java.lang.String)">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>setWidth</h4>
<pre>public&nbsp;void&nbsp;setWidth(<a href="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;width)</pre>
</li>
</ul>
<a name="setWidthPercent(java.lang.String)">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>setWidthPercent</h4>
<pre>public&nbsp;void&nbsp;setWidthPercent(<a href="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;widthPercent)</pre>
</li>
</ul>
<a name="height()">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>height</h4>
<pre>public&nbsp;<a href="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;height()</pre>
<div class="block"><strong>Description copied from interface:&nbsp;<code><a href="../../../flex2/linker/LinkerConfiguration.html#height()">LinkerConfiguration</a></code></strong></div>
<div class="block">SWF height</div>
<dl>
<dt><strong>Specified by:</strong></dt>
<dd><code><a href="../../../flex2/linker/LinkerConfiguration.html#height()">height</a></code>&nbsp;in interface&nbsp;<code><a href="../../../flex2/linker/LinkerConfiguration.html" title="interface in flex2.linker">LinkerConfiguration</a></code></dd>
</dl>
</li>
</ul>
<a name="heightPercent()">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>heightPercent</h4>
<pre>public&nbsp;<a href="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;heightPercent()</pre>
<div class="block"><strong>Description copied from interface:&nbsp;<code><a href="../../../flex2/linker/LinkerConfiguration.html#heightPercent()">LinkerConfiguration</a></code></strong></div>
<div class="block">SWF height percentage</div>
<dl>
<dt><strong>Specified by:</strong></dt>
<dd><code><a href="../../../flex2/linker/LinkerConfiguration.html#heightPercent()">heightPercent</a></code>&nbsp;in interface&nbsp;<code><a href="../../../flex2/linker/LinkerConfiguration.html" title="interface in flex2.linker">LinkerConfiguration</a></code></dd>
</dl>
</li>
</ul>
<a name="setHeight(java.lang.String)">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>setHeight</h4>
<pre>public&nbsp;void&nbsp;setHeight(<a href="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;height)</pre>
</li>
</ul>
<a name="setHeightPercent(java.lang.String)">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>setHeightPercent</h4>
<pre>public&nbsp;void&nbsp;setHeightPercent(<a href="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;heightPercent)</pre>
</li>
</ul>
<a name="pageTitle()">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>pageTitle</h4>
<pre>public&nbsp;<a href="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;pageTitle()</pre>
<div class="block"><strong>Description copied from interface:&nbsp;<code><a href="../../../flex2/linker/LinkerConfiguration.html#pageTitle()">LinkerConfiguration</a></code></strong></div>
<div class="block">browser page title</div>
<dl>
<dt><strong>Specified by:</strong></dt>
<dd><code><a href="../../../flex2/linker/LinkerConfiguration.html#pageTitle()">pageTitle</a></code>&nbsp;in interface&nbsp;<code><a href="../../../flex2/linker/LinkerConfiguration.html" title="interface in flex2.linker">LinkerConfiguration</a></code></dd>
</dl>
</li>
</ul>
<a name="setPageTitle(java.lang.String)">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>setPageTitle</h4>
<pre>public&nbsp;void&nbsp;setPageTitle(<a href="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;title)</pre>
</li>
</ul>
<a name="getRootClassName()">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>getRootClassName</h4>
<pre>public&nbsp;<a href="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;getRootClassName()</pre>
<dl>
<dt><strong>Specified by:</strong></dt>
<dd><code><a href="../../../flex2/linker/LinkerConfiguration.html#getRootClassName()">getRootClassName</a></code>&nbsp;in interface&nbsp;<code><a href="../../../flex2/linker/LinkerConfiguration.html" title="interface in flex2.linker">LinkerConfiguration</a></code></dd>
<dt><span class="strong">Returns:</span></dt><dd>the name of the root SWF class</dd></dl>
</li>
</ul>
<a name="setRootClassName(java.lang.String)">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>setRootClassName</h4>
<pre>public&nbsp;void&nbsp;setRootClassName(<a href="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;rootClassName)</pre>
<dl>
<dt><strong>Specified by:</strong></dt>
<dd><code><a href="../../../flex2/linker/LinkerConfiguration.html#setRootClassName(java.lang.String)">setRootClassName</a></code>&nbsp;in interface&nbsp;<code><a href="../../../flex2/linker/LinkerConfiguration.html" title="interface in flex2.linker">LinkerConfiguration</a></code></dd>
<dt><span class="strong">Parameters:</span></dt><dd><code>rootClassName</code> - the name of the root SWF class</dd></dl>
</li>
</ul>
<a name="getMainDefinition()">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>getMainDefinition</h4>
<pre>public&nbsp;<a href="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;getMainDefinition()</pre>
<dl>
<dt><strong>Specified by:</strong></dt>
<dd><code><a href="../../../flex2/linker/LinkerConfiguration.html#getMainDefinition()">getMainDefinition</a></code>&nbsp;in interface&nbsp;<code><a href="../../../flex2/linker/LinkerConfiguration.html" title="interface in flex2.linker">LinkerConfiguration</a></code></dd>
</dl>
</li>
</ul>
<a name="setMainDefinition(java.lang.String)">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>setMainDefinition</h4>
<pre>public&nbsp;void&nbsp;setMainDefinition(<a href="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;mainDefinition)</pre>
<dl>
<dt><strong>Specified by:</strong></dt>
<dd><code><a href="../../../flex2/linker/LinkerConfiguration.html#setMainDefinition(java.lang.String)">setMainDefinition</a></code>&nbsp;in interface&nbsp;<code><a href="../../../flex2/linker/LinkerConfiguration.html" title="interface in flex2.linker">LinkerConfiguration</a></code></dd>
<dt><span class="strong">Parameters:</span></dt><dd><code>mainDefinition</code> - the name of the app class to instantiate</dd></dl>
</li>
</ul>
<a name="getResourceBundles()">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>getResourceBundles</h4>
<pre>public&nbsp;<a href="http://docs.oracle.com/javase/6/docs/api/java/util/SortedSet.html?is-external=true" title="class or interface in java.util">SortedSet</a>&lt;<a href="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&gt;&nbsp;getResourceBundles()</pre>
<dl>
<dt><strong>Specified by:</strong></dt>
<dd><code><a href="../../../flex2/linker/LinkerConfiguration.html#getResourceBundles()">getResourceBundles</a></code>&nbsp;in interface&nbsp;<code><a href="../../../flex2/linker/LinkerConfiguration.html" title="interface in flex2.linker">LinkerConfiguration</a></code></dd>
<dt><span class="strong">Returns:</span></dt><dd>set of resource bundles for resource bundle list</dd></dl>
</li>
</ul>
<a name="getUnresolved()">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>getUnresolved</h4>
<pre>public&nbsp;<a href="http://docs.oracle.com/javase/6/docs/api/java/util/Set.html?is-external=true" title="class or interface in java.util">Set</a>&lt;<a href="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&gt;&nbsp;getUnresolved()</pre>
<dl>
<dt><strong>Specified by:</strong></dt>
<dd><code><a href="../../../flex2/linker/LinkerConfiguration.html#getUnresolved()">getUnresolved</a></code>&nbsp;in interface&nbsp;<code><a href="../../../flex2/linker/LinkerConfiguration.html" title="interface in flex2.linker">LinkerConfiguration</a></code></dd>
<dt><span class="strong">Returns:</span></dt><dd>set of symbols that were not resolved (includes any referenced externs)</dd></dl>
</li>
</ul>
<a name="getFramework()">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>getFramework</h4>
<pre>public&nbsp;<a href="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;getFramework()</pre>
</li>
</ul>
<a name="cfgFramework(flex2.compiler.config.ConfigurationValue, java.lang.String)">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>cfgFramework</h4>
<pre>public&nbsp;void&nbsp;cfgFramework(<a href="../../../flex2/compiler/config/ConfigurationValue.html" title="class in flex2.compiler.config">ConfigurationValue</a>&nbsp;cv,
<a href="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;s)</pre>
</li>
</ul>
<a name="benchmark()">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>benchmark</h4>
<pre>public&nbsp;boolean&nbsp;benchmark()</pre>
</li>
</ul>
<a name="cfgBenchmark(flex2.compiler.config.ConfigurationValue, boolean)">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>cfgBenchmark</h4>
<pre>public&nbsp;void&nbsp;cfgBenchmark(<a href="../../../flex2/compiler/config/ConfigurationValue.html" title="class in flex2.compiler.config">ConfigurationValue</a>&nbsp;cv,
boolean&nbsp;b)</pre>
</li>
</ul>
<a name="getBenchmarkInfo()">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>getBenchmarkInfo</h4>
<pre>public static&nbsp;<a href="../../../flex2/compiler/config/ConfigurationInfo.html" title="class in flex2.compiler.config">ConfigurationInfo</a>&nbsp;getBenchmarkInfo()</pre>
</li>
</ul>
<a name="getBenchmarkCompilerDetails()">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>getBenchmarkCompilerDetails</h4>
<pre>public&nbsp;int&nbsp;getBenchmarkCompilerDetails()</pre>
</li>
</ul>
<a name="cfgBenchmarkCompilerDetails(flex2.compiler.config.ConfigurationValue, int)">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>cfgBenchmarkCompilerDetails</h4>
<pre>public&nbsp;void&nbsp;cfgBenchmarkCompilerDetails(<a href="../../../flex2/compiler/config/ConfigurationValue.html" title="class in flex2.compiler.config">ConfigurationValue</a>&nbsp;cv,
int&nbsp;details)</pre>
<dl><dt><span class="strong">Parameters:</span></dt><dd><code>cv</code> - </dd><dd><code>b</code> - </dd></dl>
</li>
</ul>
<a name="getBenchmarkCompilerDetailsInfo()">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>getBenchmarkCompilerDetailsInfo</h4>
<pre>public static&nbsp;<a href="../../../flex2/compiler/config/ConfigurationInfo.html" title="class in flex2.compiler.config">ConfigurationInfo</a>&nbsp;getBenchmarkCompilerDetailsInfo()</pre>
</li>
</ul>
<a name="getBenchmarkTimeFilter()">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>getBenchmarkTimeFilter</h4>
<pre>public&nbsp;long&nbsp;getBenchmarkTimeFilter()</pre>
</li>
</ul>
<a name="cfgBenchmarkTimeFilter(flex2.compiler.config.ConfigurationValue, long)">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>cfgBenchmarkTimeFilter</h4>
<pre>public&nbsp;void&nbsp;cfgBenchmarkTimeFilter(<a href="../../../flex2/compiler/config/ConfigurationValue.html" title="class in flex2.compiler.config">ConfigurationValue</a>&nbsp;cv,
long&nbsp;timeFilter)</pre>
<dl><dt><span class="strong">Parameters:</span></dt><dd><code>cv</code> - </dd><dd><code>b</code> - </dd></dl>
</li>
</ul>
<a name="getBenchmarkTimeFilterInfo()">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>getBenchmarkTimeFilterInfo</h4>
<pre>public static&nbsp;<a href="../../../flex2/compiler/config/ConfigurationInfo.html" title="class in flex2.compiler.config">ConfigurationInfo</a>&nbsp;getBenchmarkTimeFilterInfo()</pre>
</li>
</ul>
<a name="getCompilerConfiguration()">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>getCompilerConfiguration</h4>
<pre>public&nbsp;<a href="../../../flex2/compiler/common/CompilerConfiguration.html" title="class in flex2.compiler.common">CompilerConfiguration</a>&nbsp;getCompilerConfiguration()</pre>
</li>
</ul>
<a name="debug()">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>debug</h4>
<pre>public&nbsp;boolean&nbsp;debug()</pre>
<div class="block"><strong>Description copied from interface:&nbsp;<code><a href="../../../flex2/linker/LinkerConfiguration.html#debug()">LinkerConfiguration</a></code></strong></div>
<div class="block">Generate SWFs for debugging.</div>
<dl>
<dt><strong>Specified by:</strong></dt>
<dd><code><a href="../../../flex2/linker/LinkerConfiguration.html#debug()">debug</a></code>&nbsp;in interface&nbsp;<code><a href="../../../flex2/linker/LinkerConfiguration.html" title="interface in flex2.linker">LinkerConfiguration</a></code></dd>
</dl>
</li>
</ul>
<a name="setDebug(boolean)">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>setDebug</h4>
<pre>public&nbsp;void&nbsp;setDebug(boolean&nbsp;debug)</pre>
</li>
</ul>
<a name="verboseStacktraces()">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>verboseStacktraces</h4>
<pre>public&nbsp;boolean&nbsp;verboseStacktraces()</pre>
<dl>
<dt><strong>Specified by:</strong></dt>
<dd><code><a href="../../../flex2/linker/LinkerConfiguration.html#verboseStacktraces()">verboseStacktraces</a></code>&nbsp;in interface&nbsp;<code><a href="../../../flex2/linker/LinkerConfiguration.html" title="interface in flex2.linker">LinkerConfiguration</a></code></dd>
</dl>
</li>
</ul>
<a name="optimize()">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>optimize</h4>
<pre>public&nbsp;boolean&nbsp;optimize()</pre>
<dl>
<dt><strong>Specified by:</strong></dt>
<dd><code><a href="../../../flex2/linker/LinkerConfiguration.html#optimize()">optimize</a></code>&nbsp;in interface&nbsp;<code><a href="../../../flex2/linker/LinkerConfiguration.html" title="interface in flex2.linker">LinkerConfiguration</a></code></dd>
</dl>
</li>
</ul>
<a name="setOptimize(boolean)">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>setOptimize</h4>
<pre>public&nbsp;void&nbsp;setOptimize(boolean&nbsp;optimize)</pre>
</li>
</ul>
<a name="getMetadataToKeep()">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>getMetadataToKeep</h4>
<pre>public&nbsp;<a href="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>[]&nbsp;getMetadataToKeep()</pre>
<div class="block">Includes user specified metadata and extra metadata added by the linker.</div>
<dl>
<dt><strong>Specified by:</strong></dt>
<dd><code><a href="../../../flex2/linker/LinkerConfiguration.html#getMetadataToKeep()">getMetadataToKeep</a></code>&nbsp;in interface&nbsp;<code><a href="../../../flex2/linker/LinkerConfiguration.html" title="interface in flex2.linker">LinkerConfiguration</a></code></dd>
<dt><span class="strong">Returns:</span></dt><dd>the as3 metadata to keep</dd></dl>
</li>
</ul>
<a name="debugPassword()">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>debugPassword</h4>
<pre>public&nbsp;<a href="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;debugPassword()</pre>
<div class="block">The password to include in debuggable swfs.</div>
<dl>
<dt><strong>Specified by:</strong></dt>
<dd><code><a href="../../../flex2/linker/LinkerConfiguration.html#debugPassword()">debugPassword</a></code>&nbsp;in interface&nbsp;<code><a href="../../../flex2/linker/LinkerConfiguration.html" title="interface in flex2.linker">LinkerConfiguration</a></code></dd>
</dl>
</li>
</ul>
<a name="setDebugPassword(java.lang.String)">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>setDebugPassword</h4>
<pre>public&nbsp;void&nbsp;setDebugPassword(<a href="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;debugPassword)</pre>
</li>
</ul>
<a name="cfgDebugPassword(flex2.compiler.config.ConfigurationValue, java.lang.String)">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>cfgDebugPassword</h4>
<pre>public&nbsp;void&nbsp;cfgDebugPassword(<a href="../../../flex2/compiler/config/ConfigurationValue.html" title="class in flex2.compiler.config">ConfigurationValue</a>&nbsp;cv,
<a href="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;debugPassword)</pre>
</li>
</ul>
<a name="getDebugPasswordInfo()">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>getDebugPasswordInfo</h4>
<pre>public static&nbsp;<a href="../../../flex2/compiler/config/ConfigurationInfo.html" title="class in flex2.compiler.config">ConfigurationInfo</a>&nbsp;getDebugPasswordInfo()</pre>
</li>
</ul>
<a name="backgroundColor()">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>backgroundColor</h4>
<pre>public&nbsp;int&nbsp;backgroundColor()</pre>
<dl>
<dt><strong>Specified by:</strong></dt>
<dd><code><a href="../../../flex2/linker/LinkerConfiguration.html#backgroundColor()">backgroundColor</a></code>&nbsp;in interface&nbsp;<code><a href="../../../flex2/linker/LinkerConfiguration.html" title="interface in flex2.linker">LinkerConfiguration</a></code></dd>
</dl>
</li>
</ul>
<a name="setBackgroundColor(int)">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>setBackgroundColor</h4>
<pre>public&nbsp;void&nbsp;setBackgroundColor(int&nbsp;backgroundColor)</pre>
</li>
</ul>
<a name="cfgDefaultBackgroundColor(flex2.compiler.config.ConfigurationValue, int)">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>cfgDefaultBackgroundColor</h4>
<pre>public&nbsp;void&nbsp;cfgDefaultBackgroundColor(<a href="../../../flex2/compiler/config/ConfigurationValue.html" title="class in flex2.compiler.config">ConfigurationValue</a>&nbsp;cv,
int&nbsp;backgroundColor)</pre>
</li>
</ul>
<a name="getDefaultBackgroundColorInfo()">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>getDefaultBackgroundColorInfo</h4>
<pre>public static&nbsp;<a href="../../../flex2/compiler/config/ConfigurationInfo.html" title="class in flex2.compiler.config">ConfigurationInfo</a>&nbsp;getDefaultBackgroundColorInfo()</pre>
</li>
</ul>
<a name="getFrameRate()">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>getFrameRate</h4>
<pre>public&nbsp;int&nbsp;getFrameRate()</pre>
<dl>
<dt><strong>Specified by:</strong></dt>
<dd><code><a href="../../../flex2/linker/LinkerConfiguration.html#getFrameRate()">getFrameRate</a></code>&nbsp;in interface&nbsp;<code><a href="../../../flex2/linker/LinkerConfiguration.html" title="interface in flex2.linker">LinkerConfiguration</a></code></dd>
</dl>
</li>
</ul>
<a name="setFrameRate(int)">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>setFrameRate</h4>
<pre>public&nbsp;void&nbsp;setFrameRate(int&nbsp;rate)</pre>
</li>
</ul>
<a name="cfgDefaultFrameRate(flex2.compiler.config.ConfigurationValue, int)">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>cfgDefaultFrameRate</h4>
<pre>public&nbsp;void&nbsp;cfgDefaultFrameRate(<a href="../../../flex2/compiler/config/ConfigurationValue.html" title="class in flex2.compiler.config">ConfigurationValue</a>&nbsp;cv,
int&nbsp;rate)
throws <a href="../../../flex2/compiler/config/ConfigurationException.html" title="class in flex2.compiler.config">ConfigurationException</a></pre>
<dl><dt><span class="strong">Throws:</span></dt>
<dd><code><a href="../../../flex2/compiler/config/ConfigurationException.html" title="class in flex2.compiler.config">ConfigurationException</a></code></dd></dl>
</li>
</ul>
<a name="getDefaultFrameRateInfo()">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>getDefaultFrameRateInfo</h4>
<pre>public static&nbsp;<a href="../../../flex2/compiler/config/ConfigurationInfo.html" title="class in flex2.compiler.config">ConfigurationInfo</a>&nbsp;getDefaultFrameRateInfo()</pre>
</li>
</ul>
<a name="getScriptTimeLimit()">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>getScriptTimeLimit</h4>
<pre>public&nbsp;int&nbsp;getScriptTimeLimit()</pre>
<dl>
<dt><strong>Specified by:</strong></dt>
<dd><code><a href="../../../flex2/linker/LinkerConfiguration.html#getScriptTimeLimit()">getScriptTimeLimit</a></code>&nbsp;in interface&nbsp;<code><a href="../../../flex2/linker/LinkerConfiguration.html" title="interface in flex2.linker">LinkerConfiguration</a></code></dd>
</dl>
</li>
</ul>
<a name="getScriptRecursionLimit()">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>getScriptRecursionLimit</h4>
<pre>public&nbsp;int&nbsp;getScriptRecursionLimit()</pre>
<dl>
<dt><strong>Specified by:</strong></dt>
<dd><code><a href="../../../flex2/linker/LinkerConfiguration.html#getScriptRecursionLimit()">getScriptRecursionLimit</a></code>&nbsp;in interface&nbsp;<code><a href="../../../flex2/linker/LinkerConfiguration.html" title="interface in flex2.linker">LinkerConfiguration</a></code></dd>
</dl>
</li>
</ul>
<a name="setScriptTimeLimit(int)">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>setScriptTimeLimit</h4>
<pre>public&nbsp;void&nbsp;setScriptTimeLimit(int&nbsp;scriptLimit)</pre>
</li>
</ul>
<a name="setScriptRecursionLimit(int)">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>setScriptRecursionLimit</h4>
<pre>public&nbsp;void&nbsp;setScriptRecursionLimit(int&nbsp;recursionLimit)</pre>
</li>
</ul>
<a name="scriptLimitsSet()">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>scriptLimitsSet</h4>
<pre>public&nbsp;boolean&nbsp;scriptLimitsSet()</pre>
<dl>
<dt><strong>Specified by:</strong></dt>
<dd><code><a href="../../../flex2/linker/LinkerConfiguration.html#scriptLimitsSet()">scriptLimitsSet</a></code>&nbsp;in interface&nbsp;<code><a href="../../../flex2/linker/LinkerConfiguration.html" title="interface in flex2.linker">LinkerConfiguration</a></code></dd>
</dl>
</li>
</ul>
<a name="cfgDefaultScriptLimits(flex2.compiler.config.ConfigurationValue, int, int)">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>cfgDefaultScriptLimits</h4>
<pre>public&nbsp;void&nbsp;cfgDefaultScriptLimits(<a href="../../../flex2/compiler/config/ConfigurationValue.html" title="class in flex2.compiler.config">ConfigurationValue</a>&nbsp;cv,
int&nbsp;maxRecursionDepth,
int&nbsp;maxExecutionTime)
throws <a href="../../../flex2/compiler/config/ConfigurationException.html" title="class in flex2.compiler.config">ConfigurationException</a></pre>
<dl><dt><span class="strong">Throws:</span></dt>
<dd><code><a href="../../../flex2/compiler/config/ConfigurationException.html" title="class in flex2.compiler.config">ConfigurationException</a></code></dd></dl>
</li>
</ul>
<a name="getDefaultScriptLimitsInfo()">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>getDefaultScriptLimitsInfo</h4>
<pre>public static&nbsp;<a href="../../../flex2/compiler/config/ConfigurationInfo.html" title="class in flex2.compiler.config">ConfigurationInfo</a>&nbsp;getDefaultScriptLimitsInfo()</pre>
</li>
</ul>
<a name="defaultWidth()">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>defaultWidth</h4>
<pre>public&nbsp;int&nbsp;defaultWidth()</pre>
<dl>
<dt><strong>Specified by:</strong></dt>
<dd><code><a href="../../../flex2/linker/LinkerConfiguration.html#defaultWidth()">defaultWidth</a></code>&nbsp;in interface&nbsp;<code><a href="../../../flex2/linker/LinkerConfiguration.html" title="interface in flex2.linker">LinkerConfiguration</a></code></dd>
</dl>
</li>
</ul>
<a name="defaultHeight()">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>defaultHeight</h4>
<pre>public&nbsp;int&nbsp;defaultHeight()</pre>
<dl>
<dt><strong>Specified by:</strong></dt>
<dd><code><a href="../../../flex2/linker/LinkerConfiguration.html#defaultHeight()">defaultHeight</a></code>&nbsp;in interface&nbsp;<code><a href="../../../flex2/linker/LinkerConfiguration.html" title="interface in flex2.linker">LinkerConfiguration</a></code></dd>
</dl>
</li>
</ul>
<a name="cfgDefaultSize(flex2.compiler.config.ConfigurationValue, int, int)">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>cfgDefaultSize</h4>
<pre>public&nbsp;void&nbsp;cfgDefaultSize(<a href="../../../flex2/compiler/config/ConfigurationValue.html" title="class in flex2.compiler.config">ConfigurationValue</a>&nbsp;cv,
int&nbsp;width,
int&nbsp;height)
throws <a href="../../../flex2/compiler/config/ConfigurationException.html" title="class in flex2.compiler.config">ConfigurationException</a></pre>
<dl><dt><span class="strong">Throws:</span></dt>
<dd><code><a href="../../../flex2/compiler/config/ConfigurationException.html" title="class in flex2.compiler.config">ConfigurationException</a></code></dd></dl>
</li>
</ul>
<a name="getDefaultSizeInfo()">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>getDefaultSizeInfo</h4>
<pre>public static&nbsp;<a href="../../../flex2/compiler/config/ConfigurationInfo.html" title="class in flex2.compiler.config">ConfigurationInfo</a>&nbsp;getDefaultSizeInfo()</pre>
</li>
</ul>
<a name="getExterns()">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>getExterns</h4>
<pre>public&nbsp;<a href="http://docs.oracle.com/javase/6/docs/api/java/util/Set.html?is-external=true" title="class or interface in java.util">Set</a>&lt;<a href="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&gt;&nbsp;getExterns()</pre>
<dl>
<dt><strong>Specified by:</strong></dt>
<dd><code><a href="../../../flex2/linker/LinkerConfiguration.html#getExterns()">getExterns</a></code>&nbsp;in interface&nbsp;<code><a href="../../../flex2/linker/LinkerConfiguration.html" title="interface in flex2.linker">LinkerConfiguration</a></code></dd>
<dt><span class="strong">Returns:</span></dt><dd>set of configured external symbols</dd></dl>
</li>
</ul>
<a name="addExterns(java.util.Collection)">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>addExterns</h4>
<pre>public&nbsp;void&nbsp;addExterns(<a href="http://docs.oracle.com/javase/6/docs/api/java/util/Collection.html?is-external=true" title="class or interface in java.util">Collection</a>&lt;<a href="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&gt;&nbsp;externs)</pre>
</li>
</ul>
<a name="addExterns(flex2.compiler.util.QName[])">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>addExterns</h4>
<pre>public&nbsp;void&nbsp;addExterns(<a href="../../../flex2/compiler/util/QName.html" title="class in flex2.compiler.util">QName</a>[]&nbsp;qNames)</pre>
</li>
</ul>
<a name="cfgExterns(flex2.compiler.config.ConfigurationValue, java.util.List)">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>cfgExterns</h4>
<pre>public&nbsp;void&nbsp;cfgExterns(<a href="../../../flex2/compiler/config/ConfigurationValue.html" title="class in flex2.compiler.config">ConfigurationValue</a>&nbsp;cfgval,
<a href="http://docs.oracle.com/javase/6/docs/api/java/util/List.html?is-external=true" title="class or interface in java.util">List</a>&lt;<a href="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&gt;&nbsp;vals)</pre>
</li>
</ul>
<a name="getExternsInfo()">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>getExternsInfo</h4>
<pre>public static&nbsp;<a href="../../../flex2/compiler/config/ConfigurationInfo.html" title="class in flex2.compiler.config">ConfigurationInfo</a>&nbsp;getExternsInfo()</pre>
</li>
</ul>
<a name="removeExterns(java.util.Collection)">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>removeExterns</h4>
<pre>public&nbsp;void&nbsp;removeExterns(<a href="http://docs.oracle.com/javase/6/docs/api/java/util/Collection.html?is-external=true" title="class or interface in java.util">Collection</a>&lt;<a href="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&gt;&nbsp;externs)</pre>
</li>
</ul>
<a name="toQNameString(java.util.List)">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>toQNameString</h4>
<pre>protected&nbsp;<a href="http://docs.oracle.com/javase/6/docs/api/java/util/List.html?is-external=true" title="class or interface in java.util">List</a>&lt;<a href="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&gt;&nbsp;toQNameString(<a href="http://docs.oracle.com/javase/6/docs/api/java/util/List.html?is-external=true" title="class or interface in java.util">List</a>&lt;<a href="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&gt;&nbsp;vals)</pre>
</li>
</ul>
<a name="getFramesConfiguration()">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>getFramesConfiguration</h4>
<pre>public&nbsp;<a href="../../../flex2/compiler/common/FramesConfiguration.html" title="class in flex2.compiler.common">FramesConfiguration</a>&nbsp;getFramesConfiguration()</pre>
</li>
</ul>
<a name="getFrameList()">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>getFrameList</h4>
<pre>public&nbsp;<a href="http://docs.oracle.com/javase/6/docs/api/java/util/List.html?is-external=true" title="class or interface in java.util">List</a>&lt;<a href="../../../flex2/compiler/common/FramesConfiguration.FrameInfo.html" title="class in flex2.compiler.common">FramesConfiguration.FrameInfo</a>&gt;&nbsp;getFrameList()</pre>
<dl>
<dt><strong>Specified by:</strong></dt>
<dd><code><a href="../../../flex2/linker/LinkerConfiguration.html#getFrameList()">getFrameList</a></code>&nbsp;in interface&nbsp;<code><a href="../../../flex2/linker/LinkerConfiguration.html" title="interface in flex2.linker">LinkerConfiguration</a></code></dd>
<dt><span class="strong">Returns:</span></dt><dd>list of frame classes</dd></dl>
</li>
</ul>
<a name="cfgGenerateFrameLoader(flex2.compiler.config.ConfigurationValue, boolean)">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>cfgGenerateFrameLoader</h4>
<pre>public&nbsp;void&nbsp;cfgGenerateFrameLoader(<a href="../../../flex2/compiler/config/ConfigurationValue.html" title="class in flex2.compiler.config">ConfigurationValue</a>&nbsp;cv,
boolean&nbsp;value)</pre>
</li>
</ul>
<a name="getGenerateFrameLoaderInfo()">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>getGenerateFrameLoaderInfo</h4>
<pre>public static&nbsp;<a href="../../../flex2/compiler/config/ConfigurationInfo.html" title="class in flex2.compiler.config">ConfigurationInfo</a>&nbsp;getGenerateFrameLoaderInfo()</pre>
</li>
</ul>
<a name="getIncludes()">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>getIncludes</h4>
<pre>public&nbsp;<a href="http://docs.oracle.com/javase/6/docs/api/java/util/Set.html?is-external=true" title="class or interface in java.util">Set</a>&lt;<a href="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&gt;&nbsp;getIncludes()</pre>
<dl>
<dt><strong>Specified by:</strong></dt>
<dd><code><a href="../../../flex2/linker/LinkerConfiguration.html#getIncludes()">getIncludes</a></code>&nbsp;in interface&nbsp;<code><a href="../../../flex2/linker/LinkerConfiguration.html" title="interface in flex2.linker">LinkerConfiguration</a></code></dd>
<dt><span class="strong">Returns:</span></dt><dd>set of symbols to always include</dd></dl>
</li>
</ul>
<a name="addIncludes(java.util.Collection)">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>addIncludes</h4>
<pre>public&nbsp;void&nbsp;addIncludes(<a href="http://docs.oracle.com/javase/6/docs/api/java/util/Collection.html?is-external=true" title="class or interface in java.util">Collection</a>&lt;<a href="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&gt;&nbsp;includes)</pre>
</li>
</ul>
<a name="cfgIncludes(flex2.compiler.config.ConfigurationValue, java.util.List)">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>cfgIncludes</h4>
<pre>public&nbsp;void&nbsp;cfgIncludes(<a href="../../../flex2/compiler/config/ConfigurationValue.html" title="class in flex2.compiler.config">ConfigurationValue</a>&nbsp;cfgval,
<a href="http://docs.oracle.com/javase/6/docs/api/java/util/List.html?is-external=true" title="class or interface in java.util">List</a>&lt;<a href="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&gt;&nbsp;vals)</pre>
</li>
</ul>
<a name="getIncludesInfo()">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>getIncludesInfo</h4>
<pre>public static&nbsp;<a href="../../../flex2/compiler/config/ConfigurationInfo.html" title="class in flex2.compiler.config">ConfigurationInfo</a>&nbsp;getIncludesInfo()</pre>
</li>
</ul>
<a name="lazyInit()">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>lazyInit</h4>
<pre>public&nbsp;boolean&nbsp;lazyInit()</pre>
<dl>
<dt><strong>Specified by:</strong></dt>
<dd><code><a href="../../../flex2/linker/LinkerConfiguration.html#lazyInit()">lazyInit</a></code>&nbsp;in interface&nbsp;<code><a href="../../../flex2/linker/LinkerConfiguration.html" title="interface in flex2.linker">LinkerConfiguration</a></code></dd>
</dl>
</li>
</ul>
<a name="cfgLazyInit(flex2.compiler.config.ConfigurationValue, boolean)">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>cfgLazyInit</h4>
<pre>public&nbsp;void&nbsp;cfgLazyInit(<a href="../../../flex2/compiler/config/ConfigurationValue.html" title="class in flex2.compiler.config">ConfigurationValue</a>&nbsp;cv,
boolean&nbsp;b)</pre>
</li>
</ul>
<a name="getLazyInitInfo()">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>getLazyInitInfo</h4>
<pre>public static&nbsp;<a href="../../../flex2/compiler/config/ConfigurationInfo.html" title="class in flex2.compiler.config">ConfigurationInfo</a>&nbsp;getLazyInitInfo()</pre>
</li>
</ul>
<a name="getLinkReportFileName()">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>getLinkReportFileName</h4>
<pre>public&nbsp;<a href="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;getLinkReportFileName()</pre>
<dl>
<dt><strong>Specified by:</strong></dt>
<dd><code><a href="../../../flex2/linker/LinkerConfiguration.html#getLinkReportFileName()">getLinkReportFileName</a></code>&nbsp;in interface&nbsp;<code><a href="../../../flex2/linker/LinkerConfiguration.html" title="interface in flex2.linker">LinkerConfiguration</a></code></dd>
<dt><span class="strong">Returns:</span></dt><dd>name of compile report file, null if none</dd></dl>
</li>
</ul>
<a name="generateLinkReport()">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>generateLinkReport</h4>
<pre>public&nbsp;boolean&nbsp;generateLinkReport()</pre>
<dl>
<dt><strong>Specified by:</strong></dt>
<dd><code><a href="../../../flex2/linker/LinkerConfiguration.html#generateLinkReport()">generateLinkReport</a></code>&nbsp;in interface&nbsp;<code><a href="../../../flex2/linker/LinkerConfiguration.html" title="interface in flex2.linker">LinkerConfiguration</a></code></dd>
</dl>
</li>
</ul>
<a name="cfgLinkReport(flex2.compiler.config.ConfigurationValue, java.lang.String)">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>cfgLinkReport</h4>
<pre>public&nbsp;void&nbsp;cfgLinkReport(<a href="../../../flex2/compiler/config/ConfigurationValue.html" title="class in flex2.compiler.config">ConfigurationValue</a>&nbsp;cv,
<a href="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;filename)</pre>
</li>
</ul>
<a name="getLinkReportInfo()">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>getLinkReportInfo</h4>
<pre>public static&nbsp;<a href="../../../flex2/compiler/config/ConfigurationInfo.html" title="class in flex2.compiler.config">ConfigurationInfo</a>&nbsp;getLinkReportInfo()</pre>
</li>
</ul>
<a name="getSizeReportFileName()">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>getSizeReportFileName</h4>
<pre>public&nbsp;<a href="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;getSizeReportFileName()</pre>
<dl>
<dt><strong>Specified by:</strong></dt>
<dd><code><a href="../../../flex2/linker/LinkerConfiguration.html#getSizeReportFileName()">getSizeReportFileName</a></code>&nbsp;in interface&nbsp;<code><a href="../../../flex2/linker/LinkerConfiguration.html" title="interface in flex2.linker">LinkerConfiguration</a></code></dd>
<dt><span class="strong">Returns:</span></dt><dd>name of size report file, null if none</dd></dl>
</li>
</ul>
<a name="generateSizeReport()">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>generateSizeReport</h4>
<pre>public&nbsp;boolean&nbsp;generateSizeReport()</pre>
<dl>
<dt><strong>Specified by:</strong></dt>
<dd><code><a href="../../../flex2/linker/LinkerConfiguration.html#generateSizeReport()">generateSizeReport</a></code>&nbsp;in interface&nbsp;<code><a href="../../../flex2/linker/LinkerConfiguration.html" title="interface in flex2.linker">LinkerConfiguration</a></code></dd>
</dl>
</li>
</ul>
<a name="cfgSizeReport(flex2.compiler.config.ConfigurationValue, java.lang.String)">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>cfgSizeReport</h4>
<pre>public&nbsp;void&nbsp;cfgSizeReport(<a href="../../../flex2/compiler/config/ConfigurationValue.html" title="class in flex2.compiler.config">ConfigurationValue</a>&nbsp;cv,
<a href="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;filename)</pre>
</li>
</ul>
<a name="getSizeReportInfo()">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>getSizeReportInfo</h4>
<pre>public static&nbsp;<a href="../../../flex2/compiler/config/ConfigurationInfo.html" title="class in flex2.compiler.config">ConfigurationInfo</a>&nbsp;getSizeReportInfo()</pre>
</li>
</ul>
<a name="cfgLoadExterns(flex2.compiler.config.ConfigurationValue, java.lang.String)">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>cfgLoadExterns</h4>
<pre>public&nbsp;void&nbsp;cfgLoadExterns(<a href="../../../flex2/compiler/config/ConfigurationValue.html" title="class in flex2.compiler.config">ConfigurationValue</a>&nbsp;cfgval,
<a href="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;filename)
throws <a href="../../../flex2/compiler/config/ConfigurationException.html" title="class in flex2.compiler.config">ConfigurationException</a></pre>
<dl><dt><span class="strong">Throws:</span></dt>
<dd><code><a href="../../../flex2/compiler/config/ConfigurationException.html" title="class in flex2.compiler.config">ConfigurationException</a></code></dd></dl>
</li>
</ul>
<a name="getLoadExternsInfo()">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>getLoadExternsInfo</h4>
<pre>public static&nbsp;<a href="../../../flex2/compiler/config/ConfigurationInfo.html" title="class in flex2.compiler.config">ConfigurationInfo</a>&nbsp;getLoadExternsInfo()</pre>
</li>
</ul>
<a name="getMetadataConfiguration()">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>getMetadataConfiguration</h4>
<pre>public&nbsp;<a href="../../../flex2/compiler/common/MetadataConfiguration.html" title="class in flex2.compiler.common">MetadataConfiguration</a>&nbsp;getMetadataConfiguration()</pre>
</li>
</ul>
<a name="getLicensesConfiguration()">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>getLicensesConfiguration</h4>
<pre>public&nbsp;<a href="../../../flex2/tools/LicensesConfiguration.html" title="class in flex2.tools">LicensesConfiguration</a>&nbsp;getLicensesConfiguration()</pre>
</li>
</ul>
<a name="getRuntimeSharedLibrarySettingsConfiguration()">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>getRuntimeSharedLibrarySettingsConfiguration</h4>
<pre>public&nbsp;<a href="../../../flex2/compiler/common/RuntimeSharedLibrarySettingsConfiguration.html" title="class in flex2.compiler.common">RuntimeSharedLibrarySettingsConfiguration</a>&nbsp;getRuntimeSharedLibrarySettingsConfiguration()</pre>
</li>
</ul>
<a name="getMetadata()">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>getMetadata</h4>
<pre>public&nbsp;<a href="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;getMetadata()</pre>
<dl>
<dt><strong>Specified by:</strong></dt>
<dd><code><a href="../../../flex2/linker/LinkerConfiguration.html#getMetadata()">getMetadata</a></code>&nbsp;in interface&nbsp;<code><a href="../../../flex2/linker/LinkerConfiguration.html" title="interface in flex2.linker">LinkerConfiguration</a></code></dd>
</dl>
</li>
</ul>
<a name="cfgRawMetadata(flex2.compiler.config.ConfigurationValue, java.lang.String)">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>cfgRawMetadata</h4>
<pre>public&nbsp;void&nbsp;cfgRawMetadata(<a href="../../../flex2/compiler/config/ConfigurationValue.html" title="class in flex2.compiler.config">ConfigurationValue</a>&nbsp;cv,
<a href="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;xml)
throws <a href="../../../flex2/compiler/config/ConfigurationException.html" title="class in flex2.compiler.config">ConfigurationException</a></pre>
<dl><dt><span class="strong">Throws:</span></dt>
<dd><code><a href="../../../flex2/compiler/config/ConfigurationException.html" title="class in flex2.compiler.config">ConfigurationException</a></code></dd></dl>
</li>
</ul>
<a name="getRawMetadataInfo()">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>getRawMetadataInfo</h4>
<pre>public static&nbsp;<a href="../../../flex2/compiler/config/ConfigurationInfo.html" title="class in flex2.compiler.config">ConfigurationInfo</a>&nbsp;getRawMetadataInfo()</pre>
</li>
</ul>
<a name="getRBListFileName()">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>getRBListFileName</h4>
<pre>public&nbsp;<a href="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;getRBListFileName()</pre>
<dl>
<dt><strong>Specified by:</strong></dt>
<dd><code><a href="../../../flex2/linker/LinkerConfiguration.html#getRBListFileName()">getRBListFileName</a></code>&nbsp;in interface&nbsp;<code><a href="../../../flex2/linker/LinkerConfiguration.html" title="interface in flex2.linker">LinkerConfiguration</a></code></dd>
<dt><span class="strong">Returns:</span></dt><dd>name of resource bundle list file, null if none</dd></dl>
</li>
</ul>
<a name="generateRBList()">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>generateRBList</h4>
<pre>public&nbsp;boolean&nbsp;generateRBList()</pre>
<dl>
<dt><strong>Specified by:</strong></dt>
<dd><code><a href="../../../flex2/linker/LinkerConfiguration.html#generateRBList()">generateRBList</a></code>&nbsp;in interface&nbsp;<code><a href="../../../flex2/linker/LinkerConfiguration.html" title="interface in flex2.linker">LinkerConfiguration</a></code></dd>
</dl>
</li>
</ul>
<a name="cfgResourceBundleList(flex2.compiler.config.ConfigurationValue, java.lang.String)">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>cfgResourceBundleList</h4>
<pre>public&nbsp;void&nbsp;cfgResourceBundleList(<a href="../../../flex2/compiler/config/ConfigurationValue.html" title="class in flex2.compiler.config">ConfigurationValue</a>&nbsp;cv,
<a href="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;filename)</pre>
</li>
</ul>
<a name="getResourceBundleListInfo()">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>getResourceBundleListInfo</h4>
<pre>public static&nbsp;<a href="../../../flex2/compiler/config/ConfigurationInfo.html" title="class in flex2.compiler.config">ConfigurationInfo</a>&nbsp;getResourceBundleListInfo()</pre>
</li>
</ul>
<a name="getRuntimeSharedLibraries()">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>getRuntimeSharedLibraries</h4>
<pre>public&nbsp;<a href="http://docs.oracle.com/javase/6/docs/api/java/util/List.html?is-external=true" title="class or interface in java.util">List</a>&lt;<a href="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&gt;&nbsp;getRuntimeSharedLibraries()</pre>
</li>
</ul>
<a name="cfgRuntimeSharedLibraries(flex2.compiler.config.ConfigurationValue, java.lang.String[])">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>cfgRuntimeSharedLibraries</h4>
<pre>public&nbsp;void&nbsp;cfgRuntimeSharedLibraries(<a href="../../../flex2/compiler/config/ConfigurationValue.html" title="class in flex2.compiler.config">ConfigurationValue</a>&nbsp;cfgval,
<a href="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>[]&nbsp;urls)
throws <a href="../../../flex2/compiler/config/ConfigurationException.html" title="class in flex2.compiler.config">ConfigurationException</a></pre>
<dl><dt><span class="strong">Throws:</span></dt>
<dd><code><a href="../../../flex2/compiler/config/ConfigurationException.html" title="class in flex2.compiler.config">ConfigurationException</a></code></dd></dl>
</li>
</ul>
<a name="getRuntimeSharedLibrariesInfo()">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>getRuntimeSharedLibrariesInfo</h4>
<pre>public static&nbsp;<a href="../../../flex2/compiler/config/ConfigurationInfo.html" title="class in flex2.compiler.config">ConfigurationInfo</a>&nbsp;getRuntimeSharedLibrariesInfo()</pre>
</li>
</ul>
<a name="useNetwork()">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>useNetwork</h4>
<pre>public&nbsp;boolean&nbsp;useNetwork()</pre>
<dl>
<dt><strong>Specified by:</strong></dt>
<dd><code><a href="../../../flex2/linker/LinkerConfiguration.html#useNetwork()">useNetwork</a></code>&nbsp;in interface&nbsp;<code><a href="../../../flex2/linker/LinkerConfiguration.html" title="interface in flex2.linker">LinkerConfiguration</a></code></dd>
</dl>
</li>
</ul>
<a name="cfgUseNetwork(flex2.compiler.config.ConfigurationValue, boolean)">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>cfgUseNetwork</h4>
<pre>public&nbsp;void&nbsp;cfgUseNetwork(<a href="../../../flex2/compiler/config/ConfigurationValue.html" title="class in flex2.compiler.config">ConfigurationValue</a>&nbsp;cv,
boolean&nbsp;b)</pre>
</li>
</ul>
<a name="getRslPathInfo()">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>getRslPathInfo</h4>
<pre>public&nbsp;<a href="http://docs.oracle.com/javase/6/docs/api/java/util/List.html?is-external=true" title="class or interface in java.util">List</a>&lt;<a href="../../../flex2/compiler/common/Configuration.RslPathInfo.html" title="class in flex2.compiler.common">Configuration.RslPathInfo</a>&gt;&nbsp;getRslPathInfo()</pre>
<dl><dt><span class="strong">Returns:</span></dt><dd>List of of all the -runtime-shared-libraries-path options.
Each-runtime-shared-libraries-path option supplied results in
a RslPathInfo object.
Each object in the list is of type RslPathInfo.
The list will be empty if -static-link-runtime-shared-libraries=true.</dd></dl>
</li>
</ul>
<a name="getRslExcludedLibraries()">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>getRslExcludedLibraries</h4>
<pre>public&nbsp;<a href="../../../flex2/compiler/io/VirtualFile.html" title="interface in flex2.compiler.io">VirtualFile</a>[]&nbsp;getRslExcludedLibraries()</pre>
</li>
</ul>
<a name="cfgRuntimeSharedLibraryPath(flex2.compiler.config.ConfigurationValue, java.lang.String[])">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>cfgRuntimeSharedLibraryPath</h4>
<pre>public&nbsp;void&nbsp;cfgRuntimeSharedLibraryPath(<a href="../../../flex2/compiler/config/ConfigurationValue.html" title="class in flex2.compiler.config">ConfigurationValue</a>&nbsp;cfgval,
<a href="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>[]&nbsp;urls)
throws <a href="../../../flex2/compiler/config/ConfigurationException.html" title="class in flex2.compiler.config">ConfigurationException</a></pre>
<dl><dt><span class="strong">Throws:</span></dt>
<dd><code><a href="../../../flex2/compiler/config/ConfigurationException.html" title="class in flex2.compiler.config">ConfigurationException</a></code></dd></dl>
</li>
</ul>
<a name="getRuntimeSharedLibraryPathInfo()">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>getRuntimeSharedLibraryPathInfo</h4>
<pre>public static&nbsp;<a href="../../../flex2/compiler/config/ConfigurationInfo.html" title="class in flex2.compiler.config">ConfigurationInfo</a>&nbsp;getRuntimeSharedLibraryPathInfo()</pre>
</li>
</ul>
<a name="getStaticLinkRsl()">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>getStaticLinkRsl</h4>
<pre>public&nbsp;boolean&nbsp;getStaticLinkRsl()</pre>
<dl><dt><span class="strong">Returns:</span></dt><dd>true if -cd-rsl option should be used. False otherwise.</dd></dl>
</li>
</ul>
<a name="setOverrideStaticLinkRsl(boolean)">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>setOverrideStaticLinkRsl</h4>
<pre>protected&nbsp;void&nbsp;setOverrideStaticLinkRsl(boolean&nbsp;staticLinkRsl)</pre>
<div class="block">Allow another option, namely -rslp to override the value of
static-rsls. But you can not override a -static-rsls option that came from the command line.</div>
<dl><dt><span class="strong">Parameters:</span></dt><dd><code>staticLinkRsl</code> - </dd></dl>
</li>
</ul>
<a name="cfgStaticLinkRuntimeSharedLibraries(flex2.compiler.config.ConfigurationValue, boolean)">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>cfgStaticLinkRuntimeSharedLibraries</h4>
<pre>public&nbsp;void&nbsp;cfgStaticLinkRuntimeSharedLibraries(<a href="../../../flex2/compiler/config/ConfigurationValue.html" title="class in flex2.compiler.config">ConfigurationValue</a>&nbsp;cv,
boolean&nbsp;b)</pre>
<dl><dt><span class="strong">Parameters:</span></dt><dd><code>cv</code> - </dd><dd><code>b</code> - </dd></dl>
</li>
</ul>
<a name="getVerifyDigests()">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>getVerifyDigests</h4>
<pre>public&nbsp;boolean&nbsp;getVerifyDigests()</pre>
<dl><dt><span class="strong">Returns:</span></dt><dd>true if digest information associated with the
-cd-rsl option is used by the application at runtime. False otherwise.</dd></dl>
</li>
</ul>
<a name="cfgVerifyDigests(flex2.compiler.config.ConfigurationValue, boolean)">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>cfgVerifyDigests</h4>
<pre>public&nbsp;void&nbsp;cfgVerifyDigests(<a href="../../../flex2/compiler/config/ConfigurationValue.html" title="class in flex2.compiler.config">ConfigurationValue</a>&nbsp;cv,
boolean&nbsp;b)</pre>
<dl><dt><span class="strong">Parameters:</span></dt><dd><code>cv</code> - </dd><dd><code>b</code> - </dd></dl>
</li>
</ul>
<a name="getVerifyDigestsInfo()">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>getVerifyDigestsInfo</h4>
<pre>public static&nbsp;<a href="../../../flex2/compiler/config/ConfigurationInfo.html" title="class in flex2.compiler.config">ConfigurationInfo</a>&nbsp;getVerifyDigestsInfo()</pre>
</li>
</ul>
<a name="getRemoveUnusedRsls()">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>getRemoveUnusedRsls</h4>
<pre>public&nbsp;boolean&nbsp;getRemoveUnusedRsls()</pre>
<dl><dt><span class="strong">Returns:</span></dt><dd>true if the user wants to remove unused RSLs. Otherwise false.</dd></dl>
</li>
</ul>
<a name="cfgRemoveUnusedRsls(flex2.compiler.config.ConfigurationValue, boolean)">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>cfgRemoveUnusedRsls</h4>
<pre>public&nbsp;void&nbsp;cfgRemoveUnusedRsls(<a href="../../../flex2/compiler/config/ConfigurationValue.html" title="class in flex2.compiler.config">ConfigurationValue</a>&nbsp;cv,
boolean&nbsp;b)</pre>
<dl><dt><span class="strong">Parameters:</span></dt><dd><code>cv</code> - </dd><dd><code>b</code> - </dd></dl>
</li>
</ul>
<a name="getRemoveUnusedRslsInfo()">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>getRemoveUnusedRslsInfo</h4>
<pre>public static&nbsp;<a href="../../../flex2/compiler/config/ConfigurationInfo.html" title="class in flex2.compiler.config">ConfigurationInfo</a>&nbsp;getRemoveUnusedRslsInfo()</pre>
</li>
</ul>
<a name="getIncludeInheritanceDependenciesOnly()">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>getIncludeInheritanceDependenciesOnly</h4>
<pre>public&nbsp;boolean&nbsp;getIncludeInheritanceDependenciesOnly()</pre>
<dl>
<dt><strong>Specified by:</strong></dt>
<dd><code><a href="../../../flex2/linker/LinkerConfiguration.html#getIncludeInheritanceDependenciesOnly()">getIncludeInheritanceDependenciesOnly</a></code>&nbsp;in interface&nbsp;<code><a href="../../../flex2/linker/LinkerConfiguration.html" title="interface in flex2.linker">LinkerConfiguration</a></code></dd>
<dt><span class="strong">Returns:</span></dt><dd>true if the user want to include inheritance dependencies only.</dd></dl>
</li>
</ul>
<a name="cfgIncludeInheritanceDependenciesOnly(flex2.compiler.config.ConfigurationValue, boolean)">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>cfgIncludeInheritanceDependenciesOnly</h4>
<pre>public&nbsp;void&nbsp;cfgIncludeInheritanceDependenciesOnly(<a href="../../../flex2/compiler/config/ConfigurationValue.html" title="class in flex2.compiler.config">ConfigurationValue</a>&nbsp;cv,
boolean&nbsp;b)</pre>
<dl><dt><span class="strong">Parameters:</span></dt><dd><code>cv</code> - </dd><dd><code>b</code> - </dd></dl>
</li>
</ul>
<a name="getIncludeInheritanceDependenciesOnlyInfo()">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>getIncludeInheritanceDependenciesOnlyInfo</h4>
<pre>public static&nbsp;<a href="../../../flex2/compiler/config/ConfigurationInfo.html" title="class in flex2.compiler.config">ConfigurationInfo</a>&nbsp;getIncludeInheritanceDependenciesOnlyInfo()</pre>
</li>
</ul>
<a name="getTargetPlayerTargetAVM()">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>getTargetPlayerTargetAVM</h4>
<pre>public&nbsp;int&nbsp;getTargetPlayerTargetAVM()</pre>
<div class="block">Returns the correct macromedia.asc.embedding.avmplus.Features.TARGET_AVM*
for the current target player.</div>
<dl><dt><span class="strong">See Also:</span></dt><dd><code>macromedia.asc.util.ContextStatics.getTargetAVM()</code></dd></dl>
</li>
</ul>
<a name="getTargetPlayerTargetAVM(int)">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>getTargetPlayerTargetAVM</h4>
<pre>public static&nbsp;int&nbsp;getTargetPlayerTargetAVM(int&nbsp;targetPlayerMajorVersion)</pre>
<div class="block">Returns the correct macromedia.asc.embedding.avmplus.Features.TARGET_AVM*
for the given target player major revision (e.g. 10).</div>
<dl><dt><span class="strong">See Also:</span></dt><dd><code>macromedia.asc.util.ContextStatics.getTargetAVM()</code></dd></dl>
</li>
</ul>
<a name="getTargetPlayerRequiredUseNamespaces()">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>getTargetPlayerRequiredUseNamespaces</h4>
<pre>public&nbsp;<a href="../../../macromedia/asc/util/ObjectList.html" title="class in macromedia.asc.util">ObjectList</a>&lt;<a href="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&gt;&nbsp;getTargetPlayerRequiredUseNamespaces()</pre>
<div class="block">Returns an ObjectList filled with the correct namespaces that need to be
automagically opened for the current target player, e.g. flash10.</div>
<dl><dt><span class="strong">See Also:</span></dt><dd><code>macromedia.asc.util.ContextStatics.use_namespaces</code></dd></dl>
</li>
</ul>
<a name="getTargetPlayerRequiredUseNamespaces(int)">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>getTargetPlayerRequiredUseNamespaces</h4>
<pre>public static&nbsp;<a href="../../../macromedia/asc/util/ObjectList.html" title="class in macromedia.asc.util">ObjectList</a>&lt;<a href="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&gt;&nbsp;getTargetPlayerRequiredUseNamespaces(int&nbsp;targetPlayerMajorVersion)</pre>
<div class="block">Returns an ObjectList filled with the correct namespaces that need to be
automagically opened for the current target player, e.g. flash10.</div>
<dl><dt><span class="strong">See Also:</span></dt><dd><code>macromedia.asc.util.ContextStatics.use_namespaces</code></dd></dl>
</li>
</ul>
<a name="getTargetPlayerMajorVersion()">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>getTargetPlayerMajorVersion</h4>
<pre>public&nbsp;int&nbsp;getTargetPlayerMajorVersion()</pre>
<dl>
<dt><strong>Specified by:</strong></dt>
<dd><code><a href="../../../flex2/linker/LinkerConfiguration.html#getTargetPlayerMajorVersion()">getTargetPlayerMajorVersion</a></code>&nbsp;in interface&nbsp;<code><a href="../../../flex2/linker/LinkerConfiguration.html" title="interface in flex2.linker">LinkerConfiguration</a></code></dd>
<dt><span class="strong">Returns:</span></dt><dd>The major version of the player targeted by this application.
The returned value will be greater to or equal to 9.</dd></dl>
</li>
</ul>
<a name="getTargetPlayerMinorVersion()">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>getTargetPlayerMinorVersion</h4>
<pre>public&nbsp;int&nbsp;getTargetPlayerMinorVersion()</pre>
<dl>
<dt><strong>Specified by:</strong></dt>
<dd><code><a href="../../../flex2/linker/LinkerConfiguration.html#getTargetPlayerMinorVersion()">getTargetPlayerMinorVersion</a></code>&nbsp;in interface&nbsp;<code><a href="../../../flex2/linker/LinkerConfiguration.html" title="interface in flex2.linker">LinkerConfiguration</a></code></dd>
<dt><span class="strong">Returns:</span></dt><dd>The minor version of the player targeted by this application.
The returned value will be greater to or equal to 0.</dd></dl>
</li>
</ul>
<a name="getTargetPlayerRevision()">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>getTargetPlayerRevision</h4>
<pre>public&nbsp;int&nbsp;getTargetPlayerRevision()</pre>
<dl>
<dt><strong>Specified by:</strong></dt>
<dd><code><a href="../../../flex2/linker/LinkerConfiguration.html#getTargetPlayerRevision()">getTargetPlayerRevision</a></code>&nbsp;in interface&nbsp;<code><a href="../../../flex2/linker/LinkerConfiguration.html" title="interface in flex2.linker">LinkerConfiguration</a></code></dd>
<dt><span class="strong">Returns:</span></dt><dd>The revision of the player targeted by this application.
The returned value will be greater to or equal to 0.</dd></dl>
</li>
</ul>
<a name="cfgTargetPlayer(flex2.compiler.config.ConfigurationValue, java.lang.String)">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>cfgTargetPlayer</h4>
<pre>public&nbsp;void&nbsp;cfgTargetPlayer(<a href="../../../flex2/compiler/config/ConfigurationValue.html" title="class in flex2.compiler.config">ConfigurationValue</a>&nbsp;cv,
<a href="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;version)
throws <a href="../../../flex2/compiler/config/ConfigurationException.html" title="class in flex2.compiler.config">ConfigurationException</a></pre>
<dl><dt><span class="strong">Parameters:</span></dt><dd><code>cv</code> - </dd><dd><code>b</code> - </dd>
<dt><span class="strong">Throws:</span></dt>
<dd><code><a href="../../../flex2/compiler/config/ConfigurationException.html" title="class in flex2.compiler.config">ConfigurationException</a></code></dd></dl>
</li>
</ul>
<a name="getTargetPlayerInfo()">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>getTargetPlayerInfo</h4>
<pre>public static&nbsp;<a href="../../../flex2/compiler/config/ConfigurationInfo.html" title="class in flex2.compiler.config">ConfigurationInfo</a>&nbsp;getTargetPlayerInfo()</pre>
</li>
</ul>
<a name="getSwfVersion()">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>getSwfVersion</h4>
<pre>public&nbsp;int&nbsp;getSwfVersion()</pre>
<dl>
<dt><strong>Specified by:</strong></dt>
<dd><code><a href="../../../flex2/linker/LinkerConfiguration.html#getSwfVersion()">getSwfVersion</a></code>&nbsp;in interface&nbsp;<code><a href="../../../flex2/linker/LinkerConfiguration.html" title="interface in flex2.linker">LinkerConfiguration</a></code></dd>
<dt><span class="strong">Returns:</span></dt><dd>The version of the generated SWF file.</dd></dl>
</li>
</ul>
<a name="setSwfVersion(int)">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>setSwfVersion</h4>
<pre>public&nbsp;void&nbsp;setSwfVersion(int&nbsp;version)</pre>
</li>
</ul>
<a name="cfgSwfVersion(flex2.compiler.config.ConfigurationValue, int)">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>cfgSwfVersion</h4>
<pre>public&nbsp;void&nbsp;cfgSwfVersion(<a href="../../../flex2/compiler/config/ConfigurationValue.html" title="class in flex2.compiler.config">ConfigurationValue</a>&nbsp;cv,
int&nbsp;version)</pre>
</li>
</ul>
<a name="getComputeDigest()">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>getComputeDigest</h4>
<pre>public&nbsp;boolean&nbsp;getComputeDigest()</pre>
<dl>
<dt><strong>Specified by:</strong></dt>
<dd><code><a href="../../../flex2/linker/LinkerConfiguration.html#getComputeDigest()">getComputeDigest</a></code>&nbsp;in interface&nbsp;<code><a href="../../../flex2/linker/LinkerConfiguration.html" title="interface in flex2.linker">LinkerConfiguration</a></code></dd>
<dt><span class="strong">Returns:</span></dt><dd>true if the digest should be computed, false otherwise.</dd></dl>
</li>
</ul>
<a name="getUseDirectBlit()">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>getUseDirectBlit</h4>
<pre>public&nbsp;boolean&nbsp;getUseDirectBlit()</pre>
<dl>
<dt><strong>Specified by:</strong></dt>
<dd><code><a href="../../../flex2/linker/LinkerConfiguration.html#getUseDirectBlit()">getUseDirectBlit</a></code>&nbsp;in interface&nbsp;<code><a href="../../../flex2/linker/LinkerConfiguration.html" title="interface in flex2.linker">LinkerConfiguration</a></code></dd>
</dl>
</li>
</ul>
<a name="setUseDirectBlit(boolean)">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>setUseDirectBlit</h4>
<pre>public&nbsp;void&nbsp;setUseDirectBlit(boolean&nbsp;value)</pre>
</li>
</ul>
<a name="cfgUseDirectBlit(flex2.compiler.config.ConfigurationValue, boolean)">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>cfgUseDirectBlit</h4>
<pre>public&nbsp;void&nbsp;cfgUseDirectBlit(<a href="../../../flex2/compiler/config/ConfigurationValue.html" title="class in flex2.compiler.config">ConfigurationValue</a>&nbsp;cv,
boolean&nbsp;value)</pre>
</li>
</ul>
<a name="getUseGpu()">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>getUseGpu</h4>
<pre>public&nbsp;boolean&nbsp;getUseGpu()</pre>
<dl>
<dt><strong>Specified by:</strong></dt>
<dd><code><a href="../../../flex2/linker/LinkerConfiguration.html#getUseGpu()">getUseGpu</a></code>&nbsp;in interface&nbsp;<code><a href="../../../flex2/linker/LinkerConfiguration.html" title="interface in flex2.linker">LinkerConfiguration</a></code></dd>
</dl>
</li>
</ul>
<a name="setUseGpu(boolean)">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>setUseGpu</h4>
<pre>public&nbsp;void&nbsp;setUseGpu(boolean&nbsp;value)</pre>
</li>
</ul>
<a name="cfgUseGpu(flex2.compiler.config.ConfigurationValue, boolean)">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>cfgUseGpu</h4>
<pre>public&nbsp;void&nbsp;cfgUseGpu(<a href="../../../flex2/compiler/config/ConfigurationValue.html" title="class in flex2.compiler.config">ConfigurationValue</a>&nbsp;cv,
boolean&nbsp;value)</pre>
</li>
</ul>
<a name="isSwcChecksumEnabled()">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>isSwcChecksumEnabled</h4>
<pre>public&nbsp;boolean&nbsp;isSwcChecksumEnabled()</pre>
<dl><dt><span class="strong">Returns:</span></dt><dd>true if optimization using signature checksums are enabled.</dd></dl>
</li>
</ul>
<a name="cfgSwcChecksum(flex2.compiler.config.ConfigurationValue, boolean)">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>cfgSwcChecksum</h4>
<pre>public&nbsp;void&nbsp;cfgSwcChecksum(<a href="../../../flex2/compiler/config/ConfigurationValue.html" title="class in flex2.compiler.config">ConfigurationValue</a>&nbsp;cv,
boolean&nbsp;b)</pre>
<dl><dt><span class="strong">Parameters:</span></dt><dd><code>cv</code> - </dd><dd><code>b</code> - </dd></dl>
</li>
</ul>
<a name="getSwcChecksumInfo()">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>getSwcChecksumInfo</h4>
<pre>public static&nbsp;<a href="../../../flex2/compiler/config/ConfigurationInfo.html" title="class in flex2.compiler.config">ConfigurationInfo</a>&nbsp;getSwcChecksumInfo()</pre>
</li>
</ul>
<a name="addCSSArchiveFiles(java.util.Map)">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>addCSSArchiveFiles</h4>
<pre>public&nbsp;void&nbsp;addCSSArchiveFiles(<a href="http://docs.oracle.com/javase/6/docs/api/java/util/Map.html?is-external=true" title="class or interface in java.util">Map</a>&lt;<a href="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>,<a href="../../../flex2/compiler/io/VirtualFile.html" title="interface in flex2.compiler.io">VirtualFile</a>&gt;&nbsp;m)</pre>
</li>
</ul>
<a name="getCSSArchiveFiles()">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>getCSSArchiveFiles</h4>
<pre>public&nbsp;<a href="http://docs.oracle.com/javase/6/docs/api/java/util/Map.html?is-external=true" title="class or interface in java.util">Map</a>&lt;<a href="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>,<a href="../../../flex2/compiler/io/VirtualFile.html" title="interface in flex2.compiler.io">VirtualFile</a>&gt;&nbsp;getCSSArchiveFiles()</pre>
</li>
</ul>
<a name="addL10nArchiveFiles(java.util.Map)">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>addL10nArchiveFiles</h4>
<pre>public&nbsp;void&nbsp;addL10nArchiveFiles(<a href="http://docs.oracle.com/javase/6/docs/api/java/util/Map.html?is-external=true" title="class or interface in java.util">Map</a>&lt;<a href="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>,<a href="../../../flex2/compiler/io/VirtualFile.html" title="interface in flex2.compiler.io">VirtualFile</a>&gt;&nbsp;m)</pre>
</li>
</ul>
<a name="getL10NArchiveFiles()">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>getL10NArchiveFiles</h4>
<pre>public&nbsp;<a href="http://docs.oracle.com/javase/6/docs/api/java/util/Map.html?is-external=true" title="class or interface in java.util">Map</a>&lt;<a href="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>,<a href="../../../flex2/compiler/io/VirtualFile.html" title="interface in flex2.compiler.io">VirtualFile</a>&gt;&nbsp;getL10NArchiveFiles()</pre>
</li>
</ul>
<a name="getCompatibilityVersionString()">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>getCompatibilityVersionString</h4>
<pre>public&nbsp;<a href="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;getCompatibilityVersionString()</pre>
<div class="block">The compatibility version specified in the configuration.</div>
<dl>
<dt><strong>Specified by:</strong></dt>
<dd><code><a href="../../../flex2/linker/LinkerConfiguration.html#getCompatibilityVersionString()">getCompatibilityVersionString</a></code>&nbsp;in interface&nbsp;<code><a href="../../../flex2/linker/LinkerConfiguration.html" title="interface in flex2.linker">LinkerConfiguration</a></code></dd>
</dl>
</li>
</ul>
<a name="getCompatibilityVersion()">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>getCompatibilityVersion</h4>
<pre>public&nbsp;int&nbsp;getCompatibilityVersion()</pre>
<dl>
<dt><strong>Specified by:</strong></dt>
<dd><code><a href="../../../flex2/linker/LinkerConfiguration.html#getCompatibilityVersion()">getCompatibilityVersion</a></code>&nbsp;in interface&nbsp;<code><a href="../../../flex2/linker/LinkerConfiguration.html" title="interface in flex2.linker">LinkerConfiguration</a></code></dd>
</dl>
</li>
</ul>
<a name="getMinimumSupportedVersionString()">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>getMinimumSupportedVersionString</h4>
<pre>public&nbsp;<a href="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;getMinimumSupportedVersionString()</pre>
<div class="block">The minimum supported library version specified in the configuration.</div>
<dl>
<dt><strong>Specified by:</strong></dt>
<dd><code><a href="../../../flex2/linker/LinkerConfiguration.html#getMinimumSupportedVersionString()">getMinimumSupportedVersionString</a></code>&nbsp;in interface&nbsp;<code><a href="../../../flex2/linker/LinkerConfiguration.html" title="interface in flex2.linker">LinkerConfiguration</a></code></dd>
</dl>
</li>
</ul>
<a name="getMinimumSupportedVersion()">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>getMinimumSupportedVersion</h4>
<pre>public&nbsp;int&nbsp;getMinimumSupportedVersion()</pre>
<dl>
<dt><strong>Specified by:</strong></dt>
<dd><code><a href="../../../flex2/linker/LinkerConfiguration.html#getMinimumSupportedVersion()">getMinimumSupportedVersion</a></code>&nbsp;in interface&nbsp;<code><a href="../../../flex2/linker/LinkerConfiguration.html" title="interface in flex2.linker">LinkerConfiguration</a></code></dd>
</dl>
</li>
</ul>
<a name="getQualifiedTypeSelectors()">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>getQualifiedTypeSelectors</h4>
<pre>public&nbsp;boolean&nbsp;getQualifiedTypeSelectors()</pre>
</li>
</ul>
<a name="setAdvancedTelemetry(boolean)">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>setAdvancedTelemetry</h4>
<pre>public&nbsp;void&nbsp;setAdvancedTelemetry(boolean&nbsp;enableTelemetry)</pre>
<div class="block">Configures the LocalizationManager's locale, which is used when
reporting compile time errors, warnings, and info.</div>
<dl><dt><span class="strong">Parameters:</span></dt><dd><code>toolsLocale</code> - A locale in Java format. For example, "en" or "ja_JP".</dd>
<dt><span class="strong">Throws:</span></dt>
<dd><code><a href="../../../flex2/compiler/config/ConfigurationException.html" title="class in flex2.compiler.config">ConfigurationException</a></code> - When the specified toolsLocale is
not available a ToolsLocaleNotAvailable error is reported.
public void cfgToolsLocale(ConfigurationValue cv, String toolsLocale)
throws ConfigurationException
{
Locale[] locales = Locale.getAvailableLocales();
for (int i = 0; i < locales.length; i++)
{
if (locales[i].toString().equals(toolsLocale))
{
LocalizationManager localizationManager = ThreadLocalToolkit.getLocalizationManager();
if (localizationManager != null)
{
localizationManager.setLocale(locales[i]);
}
else
{
assert false : "LocalizationManager not setup yet.";
}
return;
}
}
throw new ConfigurationException.ToolsLocaleNotAvailable(cv.getVar(),
cv.getSource(),
cv.getLine() );
}</dd></dl>
</li>
</ul>
<a name="getAdvancedTelemetry()">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>getAdvancedTelemetry</h4>
<pre>public&nbsp;boolean&nbsp;getAdvancedTelemetry()</pre>
<dl>
<dt><strong>Specified by:</strong></dt>
<dd><code><a href="../../../flex2/linker/LinkerConfiguration.html#getAdvancedTelemetry()">getAdvancedTelemetry</a></code>&nbsp;in interface&nbsp;<code><a href="../../../flex2/linker/LinkerConfiguration.html" title="interface in flex2.linker">LinkerConfiguration</a></code></dd>
</dl>
</li>
</ul>
<a name="clone()">
<!-- -->
</a>
<ul class="blockListLast">
<li class="blockList">
<h4>clone</h4>
<pre>public&nbsp;<a href="../../../flex2/compiler/common/Configuration.html" title="class in flex2.compiler.common">Configuration</a>&nbsp;clone()
throws <a href="http://docs.oracle.com/javase/6/docs/api/java/lang/CloneNotSupportedException.html?is-external=true" title="class or interface in java.lang">CloneNotSupportedException</a></pre>
<dl>
<dt><strong>Overrides:</strong></dt>
<dd><code><a href="http://docs.oracle.com/javase/6/docs/api/java/lang/Object.html?is-external=true#clone()" title="class or interface in java.lang">clone</a></code>&nbsp;in class&nbsp;<code><a href="http://docs.oracle.com/javase/6/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">Object</a></code></dd>
<dt><span class="strong">Throws:</span></dt>
<dd><code><a href="http://docs.oracle.com/javase/6/docs/api/java/lang/CloneNotSupportedException.html?is-external=true" title="class or interface in java.lang">CloneNotSupportedException</a></code></dd></dl>
</li>
</ul>
</li>
</ul>
</li>
</ul>
</div>
</div>
<!-- ========= END OF CLASS DATA ========= -->
<!-- ======= START OF BOTTOM NAVBAR ====== -->
<div class="bottomNav"><a name="navbar_bottom">
<!-- -->
</a><a href="#skip-navbar_bottom" title="Skip navigation links"></a><a name="navbar_bottom_firstrow">
<!-- -->
</a>
<ul class="navList" title="Navigation">
<li><a href="../../../overview-summary.html">Overview</a></li>
<li><a href="package-summary.html">Package</a></li>
<li class="navBarCell1Rev">Class</li>
<li><a href="class-use/Configuration.html">Use</a></li>
<li><a href="package-tree.html">Tree</a></li>
<li><a href="../../../deprecated-list.html">Deprecated</a></li>
<li><a href="../../../index-all.html">Index</a></li>
<li><a href="../../../help-doc.html">Help</a></li>
</ul>
</div>
<div class="subNav">
<ul class="navList">
<li><a href="../../../flex2/compiler/common/CompilerConfiguration.html" title="class in flex2.compiler.common"><span class="strong">Prev Class</span></a></li>
<li><a href="../../../flex2/compiler/common/Configuration.RslPathInfo.html" title="class in flex2.compiler.common"><span class="strong">Next Class</span></a></li>
</ul>
<ul class="navList">
<li><a href="../../../index.html?flex2/compiler/common/Configuration.html" target="_top">Frames</a></li>
<li><a href="Configuration.html" target="_top">No Frames</a></li>
</ul>
<ul class="navList" id="allclasses_navbar_bottom">
<li><a href="../../../allclasses-noframe.html">All Classes</a></li>
</ul>
<div>
<script type="text/javascript"><!--
allClassesLink = document.getElementById("allclasses_navbar_bottom");
if(window==top) {
allClassesLink.style.display = "block";
}
else {
allClassesLink.style.display = "none";
}
//-->
</script>
</div>
<div>
<ul class="subNavList">
<li>Summary:&nbsp;</li>
<li><a href="#nested_class_summary">Nested</a>&nbsp;|&nbsp;</li>
<li><a href="#field_summary">Field</a>&nbsp;|&nbsp;</li>
<li><a href="#constructor_summary">Constr</a>&nbsp;|&nbsp;</li>
<li><a href="#method_summary">Method</a></li>
</ul>
<ul class="subNavList">
<li>Detail:&nbsp;</li>
<li><a href="#field_detail">Field</a>&nbsp;|&nbsp;</li>
<li><a href="#constructor_detail">Constr</a>&nbsp;|&nbsp;</li>
<li><a href="#method_detail">Method</a></li>
</ul>
</div>
<a name="skip-navbar_bottom">
<!-- -->
</a></div>
<!-- ======== END OF BOTTOM NAVBAR ======= -->
<p class="legalCopy"><small>Copyright &#169; 2016 <a href="https://www.apache.org/">The Apache Software Foundation</a>. All rights reserved.</small></p>
</body>
</html>