????
| Current Path : /opt/ant/manual/api/org/apache/tools/ant/taskdefs/ |
| Current File : //opt/ant/manual/api/org/apache/tools/ant/taskdefs/Rmic.html |
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<!-- NewPage -->
<html lang="en">
<head>
<!-- Generated by javadoc (version 1.7.0_03) on Tue May 22 06:24:52 CEST 2012 -->
<title>Rmic (Apache Ant API)</title>
<meta name="date" content="2012-05-22">
<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="Rmic (Apache Ant 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="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="../../../../../org/apache/tools/ant/taskdefs/Retry.html" title="class in org.apache.tools.ant.taskdefs"><span class="strong">Prev Class</span></a></li>
<li><a href="../../../../../org/apache/tools/ant/taskdefs/Rmic.ImplementationSpecificArgument.html" title="class in org.apache.tools.ant.taskdefs"><span class="strong">Next Class</span></a></li>
</ul>
<ul class="navList">
<li><a href="../../../../../index.html?org/apache/tools/ant/taskdefs/Rmic.html" target="_top">Frames</a></li>
<li><a href="Rmic.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: </li>
<li><a href="#nested_class_summary">Nested</a> | </li>
<li><a href="#field_summary">Field</a> | </li>
<li><a href="#constructor_summary">Constr</a> | </li>
<li><a href="#method_summary">Method</a></li>
</ul>
<ul class="subNavList">
<li>Detail: </li>
<li><a href="#field_detail">Field</a> | </li>
<li><a href="#constructor_detail">Constr</a> | </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">org.apache.tools.ant.taskdefs</div>
<h2 title="Class Rmic" class="title">Class Rmic</h2>
</div>
<div class="contentContainer">
<ul class="inheritance">
<li>java.lang.Object</li>
<li>
<ul class="inheritance">
<li><a href="../../../../../org/apache/tools/ant/ProjectComponent.html" title="class in org.apache.tools.ant">org.apache.tools.ant.ProjectComponent</a></li>
<li>
<ul class="inheritance">
<li><a href="../../../../../org/apache/tools/ant/Task.html" title="class in org.apache.tools.ant">org.apache.tools.ant.Task</a></li>
<li>
<ul class="inheritance">
<li><a href="../../../../../org/apache/tools/ant/taskdefs/MatchingTask.html" title="class in org.apache.tools.ant.taskdefs">org.apache.tools.ant.taskdefs.MatchingTask</a></li>
<li>
<ul class="inheritance">
<li>org.apache.tools.ant.taskdefs.Rmic</li>
</ul>
</li>
</ul>
</li>
</ul>
</li>
</ul>
</li>
</ul>
<div class="description">
<ul class="blockList">
<li class="blockList">
<dl>
<dt>All Implemented Interfaces:</dt>
<dd>java.lang.Cloneable, <a href="../../../../../org/apache/tools/ant/types/selectors/SelectorContainer.html" title="interface in org.apache.tools.ant.types.selectors">SelectorContainer</a></dd>
</dl>
<hr>
<br>
<pre>public class <span class="strong">Rmic</span>
extends <a href="../../../../../org/apache/tools/ant/taskdefs/MatchingTask.html" title="class in org.apache.tools.ant.taskdefs">MatchingTask</a></pre>
<div class="block">Runs the rmic compiler against classes.</p>
<p>Rmic can be run on a single class (as specified with the classname
attribute) or a number of classes at once (all classes below base that
are neither _Stub nor _Skel classes). If you want to rmic a single
class and this class is a class nested into another class, you have to
specify the classname in the form <code>Outer$$Inner</code> instead of
<code>Outer.Inner</code>.</p>
<p>It is possible to refine the set of files that are being rmiced. This can
be done with the <i>includes</i>, <i>includesfile</i>, <i>excludes</i>,
<i>excludesfile</i> and <i>defaultexcludes</i>
attributes. With the <i>includes</i> or <i>includesfile</i> attribute you
specify the files you want to have included by using patterns. The
<i>exclude</i> or <i>excludesfile</i> attribute is used to specify
the files you want to have excluded. This is also done with patterns. And
finally with the <i>defaultexcludes</i> attribute, you can specify whether
you want to use default exclusions or not. See the section on
directory based tasks</a>, on how the
inclusion/exclusion of files works, and how to write patterns.</p>
<p>This task forms an implicit FileSet and
supports all attributes of <code><fileset></code>
(<code>dir</code> becomes <code>base</code>) as well as the nested
<code><include></code>, <code><exclude></code> and
<code><patternset></code> elements.</p>
<p>It is possible to use different compilers. This can be selected
with the "build.rmic" property or the <code>compiler</code>
attribute. <a name="compilervalues">There are three choices</a>:</p>
<ul>
<li>sun (the standard compiler of the JDK)</li>
<li>kaffe (the standard compiler of
<a href="http://www.kaffe.org">Kaffe</a>)</li>
<li>weblogic</li>
</ul>
<p> The <a href="http://dione.zcu.cz/~toman40/miniRMI/">miniRMI</a>
project contains a compiler implementation for this task as well,
please consult miniRMI's documentation to learn how to use it.</p></div>
<dl><dt><span class="strong">Since:</span></dt>
<dd>Ant 1.1</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"> </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 </code></td>
<td class="colLast"><code><strong><a href="../../../../../org/apache/tools/ant/taskdefs/Rmic.ImplementationSpecificArgument.html" title="class in org.apache.tools.ant.taskdefs">Rmic.ImplementationSpecificArgument</a></strong></code>
<div class="block">Adds an "compiler" attribute to Commandline$Attribute used to
filter command line attributes based on the current
implementation.</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"> </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>static java.lang.String</code></td>
<td class="colLast"><code><strong><a href="../../../../../org/apache/tools/ant/taskdefs/Rmic.html#ERROR_BASE_NOT_SET">ERROR_BASE_NOT_SET</a></strong></code>
<div class="block">base attribute not set message</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>static java.lang.String</code></td>
<td class="colLast"><code><strong><a href="../../../../../org/apache/tools/ant/taskdefs/Rmic.html#ERROR_LOADING_CAUSED_EXCEPTION">ERROR_LOADING_CAUSED_EXCEPTION</a></strong></code>
<div class="block">loaded error message</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>static java.lang.String</code></td>
<td class="colLast"><code><strong><a href="../../../../../org/apache/tools/ant/taskdefs/Rmic.html#ERROR_NO_BASE_EXISTS">ERROR_NO_BASE_EXISTS</a></strong></code>
<div class="block">base not exists message</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>static java.lang.String</code></td>
<td class="colLast"><code><strong><a href="../../../../../org/apache/tools/ant/taskdefs/Rmic.html#ERROR_NOT_A_DIR">ERROR_NOT_A_DIR</a></strong></code>
<div class="block">base not a directory message</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>static java.lang.String</code></td>
<td class="colLast"><code><strong><a href="../../../../../org/apache/tools/ant/taskdefs/Rmic.html#ERROR_NOT_DEFINED">ERROR_NOT_DEFINED</a></strong></code>
<div class="block">not defined message</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>static java.lang.String</code></td>
<td class="colLast"><code><strong><a href="../../../../../org/apache/tools/ant/taskdefs/Rmic.html#ERROR_NOT_FOUND">ERROR_NOT_FOUND</a></strong></code>
<div class="block">could not be found message</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>static java.lang.String</code></td>
<td class="colLast"><code><strong><a href="../../../../../org/apache/tools/ant/taskdefs/Rmic.html#ERROR_RMIC_FAILED">ERROR_RMIC_FAILED</a></strong></code>
<div class="block">rmic failed message</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>static java.lang.String</code></td>
<td class="colLast"><code><strong><a href="../../../../../org/apache/tools/ant/taskdefs/Rmic.html#ERROR_UNABLE_TO_VERIFY_CLASS">ERROR_UNABLE_TO_VERIFY_CLASS</a></strong></code>
<div class="block">unable to verify message</div>
</td>
</tr>
</table>
<ul class="blockList">
<li class="blockList"><a name="fields_inherited_from_class_org.apache.tools.ant.taskdefs.MatchingTask">
<!-- -->
</a>
<h3>Fields inherited from class org.apache.tools.ant.taskdefs.<a href="../../../../../org/apache/tools/ant/taskdefs/MatchingTask.html" title="class in org.apache.tools.ant.taskdefs">MatchingTask</a></h3>
<code><a href="../../../../../org/apache/tools/ant/taskdefs/MatchingTask.html#fileset">fileset</a></code></li>
</ul>
<ul class="blockList">
<li class="blockList"><a name="fields_inherited_from_class_org.apache.tools.ant.Task">
<!-- -->
</a>
<h3>Fields inherited from class org.apache.tools.ant.<a href="../../../../../org/apache/tools/ant/Task.html" title="class in org.apache.tools.ant">Task</a></h3>
<code><a href="../../../../../org/apache/tools/ant/Task.html#target">target</a>, <a href="../../../../../org/apache/tools/ant/Task.html#taskName">taskName</a>, <a href="../../../../../org/apache/tools/ant/Task.html#taskType">taskType</a>, <a href="../../../../../org/apache/tools/ant/Task.html#wrapper">wrapper</a></code></li>
</ul>
<ul class="blockList">
<li class="blockList"><a name="fields_inherited_from_class_org.apache.tools.ant.ProjectComponent">
<!-- -->
</a>
<h3>Fields inherited from class org.apache.tools.ant.<a href="../../../../../org/apache/tools/ant/ProjectComponent.html" title="class in org.apache.tools.ant">ProjectComponent</a></h3>
<code><a href="../../../../../org/apache/tools/ant/ProjectComponent.html#description">description</a>, <a href="../../../../../org/apache/tools/ant/ProjectComponent.html#location">location</a>, <a href="../../../../../org/apache/tools/ant/ProjectComponent.html#project">project</a></code></li>
</ul>
</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"> </span></caption>
<tr>
<th class="colOne" scope="col">Constructor and Description</th>
</tr>
<tr class="altColor">
<td class="colOne"><code><strong><a href="../../../../../org/apache/tools/ant/taskdefs/Rmic.html#Rmic()">Rmic</a></strong>()</code>
<div class="block">Constructor for Rmic.</div>
</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"> </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="../../../../../org/apache/tools/ant/taskdefs/Rmic.html#add(org.apache.tools.ant.taskdefs.rmic.RmicAdapter)">add</a></strong>(<a href="../../../../../org/apache/tools/ant/taskdefs/rmic/RmicAdapter.html" title="interface in org.apache.tools.ant.taskdefs.rmic">RmicAdapter</a> adapter)</code>
<div class="block">Set the compiler adapter explicitly.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>protected void</code></td>
<td class="colLast"><code><strong><a href="../../../../../org/apache/tools/ant/taskdefs/Rmic.html#cleanup()">cleanup</a></strong>()</code>
<div class="block">Cleans up resources.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code><a href="../../../../../org/apache/tools/ant/types/Path.html" title="class in org.apache.tools.ant.types">Path</a></code></td>
<td class="colLast"><code><strong><a href="../../../../../org/apache/tools/ant/taskdefs/Rmic.html#createClasspath()">createClasspath</a></strong>()</code>
<div class="block">Creates a nested classpath element.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code><a href="../../../../../org/apache/tools/ant/taskdefs/Rmic.ImplementationSpecificArgument.html" title="class in org.apache.tools.ant.taskdefs">Rmic.ImplementationSpecificArgument</a></code></td>
<td class="colLast"><code><strong><a href="../../../../../org/apache/tools/ant/taskdefs/Rmic.html#createCompilerArg()">createCompilerArg</a></strong>()</code>
<div class="block">Adds an implementation specific command line argument.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code><a href="../../../../../org/apache/tools/ant/types/Path.html" title="class in org.apache.tools.ant.types">Path</a></code></td>
<td class="colLast"><code><strong><a href="../../../../../org/apache/tools/ant/taskdefs/Rmic.html#createCompilerClasspath()">createCompilerClasspath</a></strong>()</code>
<div class="block">The classpath to use when loading the compiler implementation
if it is not a built-in one.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code><a href="../../../../../org/apache/tools/ant/types/Path.html" title="class in org.apache.tools.ant.types">Path</a></code></td>
<td class="colLast"><code><strong><a href="../../../../../org/apache/tools/ant/taskdefs/Rmic.html#createExtdirs()">createExtdirs</a></strong>()</code>
<div class="block">Maybe creates a nested extdirs element.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><strong><a href="../../../../../org/apache/tools/ant/taskdefs/Rmic.html#execute()">execute</a></strong>()</code>
<div class="block">execute by creating an instance of an implementation
class and getting to do the work</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>java.io.File</code></td>
<td class="colLast"><code><strong><a href="../../../../../org/apache/tools/ant/taskdefs/Rmic.html#getBase()">getBase</a></strong>()</code>
<div class="block">Gets the base directory to output generated class.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>java.lang.String</code></td>
<td class="colLast"><code><strong><a href="../../../../../org/apache/tools/ant/taskdefs/Rmic.html#getClassname()">getClassname</a></strong>()</code>
<div class="block">Gets the class name to compile.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code><a href="../../../../../org/apache/tools/ant/types/Path.html" title="class in org.apache.tools.ant.types">Path</a></code></td>
<td class="colLast"><code><strong><a href="../../../../../org/apache/tools/ant/taskdefs/Rmic.html#getClasspath()">getClasspath</a></strong>()</code>
<div class="block">Gets the classpath.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>java.util.Vector</code></td>
<td class="colLast"><code><strong><a href="../../../../../org/apache/tools/ant/taskdefs/Rmic.html#getCompileList()">getCompileList</a></strong>()</code> </td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>java.lang.String</code></td>
<td class="colLast"><code><strong><a href="../../../../../org/apache/tools/ant/taskdefs/Rmic.html#getCompiler()">getCompiler</a></strong>()</code>
<div class="block">get the name of the current compiler</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>java.lang.String[]</code></td>
<td class="colLast"><code><strong><a href="../../../../../org/apache/tools/ant/taskdefs/Rmic.html#getCurrentCompilerArgs()">getCurrentCompilerArgs</a></strong>()</code>
<div class="block">Get the additional implementation specific command line arguments.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>boolean</code></td>
<td class="colLast"><code><strong><a href="../../../../../org/apache/tools/ant/taskdefs/Rmic.html#getDebug()">getDebug</a></strong>()</code>
<div class="block">Gets the debug flag.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>java.io.File</code></td>
<td class="colLast"><code><strong><a href="../../../../../org/apache/tools/ant/taskdefs/Rmic.html#getDestdir()">getDestdir</a></strong>()</code>
<div class="block">Gets the base directory to output the generated files.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>java.lang.String</code></td>
<td class="colLast"><code><strong><a href="../../../../../org/apache/tools/ant/taskdefs/Rmic.html#getExecutable()">getExecutable</a></strong>()</code>
<div class="block">Explicitly specified name of the executable to use when forking
- if any.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code><a href="../../../../../org/apache/tools/ant/types/Path.html" title="class in org.apache.tools.ant.types">Path</a></code></td>
<td class="colLast"><code><strong><a href="../../../../../org/apache/tools/ant/taskdefs/Rmic.html#getExtdirs()">getExtdirs</a></strong>()</code>
<div class="block">Gets the extension directories that will be used during the
compilation.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>java.util.Vector</code></td>
<td class="colLast"><code><strong><a href="../../../../../org/apache/tools/ant/taskdefs/Rmic.html#getFileList()">getFileList</a></strong>()</code>
<div class="block">Gets file list to compile.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>boolean</code></td>
<td class="colLast"><code><strong><a href="../../../../../org/apache/tools/ant/taskdefs/Rmic.html#getFiltering()">getFiltering</a></strong>()</code>
<div class="block">Gets whether token filtering is set</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>boolean</code></td>
<td class="colLast"><code><strong><a href="../../../../../org/apache/tools/ant/taskdefs/Rmic.html#getIdl()">getIdl</a></strong>()</code>
<div class="block">Gets IDL flags.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>java.lang.String</code></td>
<td class="colLast"><code><strong><a href="../../../../../org/apache/tools/ant/taskdefs/Rmic.html#getIdlopts()">getIdlopts</a></strong>()</code>
<div class="block">Gets additional arguments for idl compile.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>boolean</code></td>
<td class="colLast"><code><strong><a href="../../../../../org/apache/tools/ant/taskdefs/Rmic.html#getIiop()">getIiop</a></strong>()</code>
<div class="block">Gets iiop flags.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>java.lang.String</code></td>
<td class="colLast"><code><strong><a href="../../../../../org/apache/tools/ant/taskdefs/Rmic.html#getIiopopts()">getIiopopts</a></strong>()</code>
<div class="block">Gets additional arguments for iiop.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>boolean</code></td>
<td class="colLast"><code><strong><a href="../../../../../org/apache/tools/ant/taskdefs/Rmic.html#getIncludeantruntime()">getIncludeantruntime</a></strong>()</code>
<div class="block">Gets whether or not the ant classpath is to be included in the
task's classpath.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>boolean</code></td>
<td class="colLast"><code><strong><a href="../../../../../org/apache/tools/ant/taskdefs/Rmic.html#getIncludejavaruntime()">getIncludejavaruntime</a></strong>()</code>
<div class="block">Gets whether or not the java runtime should be included in this
task's classpath.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>java.lang.ClassLoader</code></td>
<td class="colLast"><code><strong><a href="../../../../../org/apache/tools/ant/taskdefs/Rmic.html#getLoader()">getLoader</a></strong>()</code>
<div class="block">Classloader for the user-specified classpath.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>java.io.File</code></td>
<td class="colLast"><code><strong><a href="../../../../../org/apache/tools/ant/taskdefs/Rmic.html#getOutputDir()">getOutputDir</a></strong>()</code>
<div class="block">Gets the base directory to output the generated files,
favoring destdir if set, otherwise defaulting to basedir.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>java.lang.Class</code></td>
<td class="colLast"><code><strong><a href="../../../../../org/apache/tools/ant/taskdefs/Rmic.html#getRemoteInterface(java.lang.Class)">getRemoteInterface</a></strong>(java.lang.Class testClass)</code>
<div class="block">Returns the topmost interface that extends Remote for a given
class - if one exists.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>java.io.File</code></td>
<td class="colLast"><code><strong><a href="../../../../../org/apache/tools/ant/taskdefs/Rmic.html#getSourceBase()">getSourceBase</a></strong>()</code>
<div class="block">Gets the source dirs to find the source java files.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>java.lang.String</code></td>
<td class="colLast"><code><strong><a href="../../../../../org/apache/tools/ant/taskdefs/Rmic.html#getStubVersion()">getStubVersion</a></strong>()</code>
<div class="block">Gets the JDK version for the generated stub code.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>boolean</code></td>
<td class="colLast"><code><strong><a href="../../../../../org/apache/tools/ant/taskdefs/Rmic.html#getVerify()">getVerify</a></strong>()</code>
<div class="block">Get verify flag.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>boolean</code></td>
<td class="colLast"><code><strong><a href="../../../../../org/apache/tools/ant/taskdefs/Rmic.html#isValidRmiRemote(java.lang.String)">isValidRmiRemote</a></strong>(java.lang.String classname)</code>
<div class="block">Load named class and test whether it can be rmic'ed</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>protected void</code></td>
<td class="colLast"><code><strong><a href="../../../../../org/apache/tools/ant/taskdefs/Rmic.html#scanDir(java.io.File, java.lang.String[], org.apache.tools.ant.util.FileNameMapper)">scanDir</a></strong>(java.io.File baseDir,
java.lang.String[] files,
<a href="../../../../../org/apache/tools/ant/util/FileNameMapper.html" title="interface in org.apache.tools.ant.util">FileNameMapper</a> mapper)</code>
<div class="block">Scans the directory looking for class files to be compiled.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><strong><a href="../../../../../org/apache/tools/ant/taskdefs/Rmic.html#setBase(java.io.File)">setBase</a></strong>(java.io.File base)</code>
<div class="block">Sets the location to store the compiled files; required</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><strong><a href="../../../../../org/apache/tools/ant/taskdefs/Rmic.html#setClassname(java.lang.String)">setClassname</a></strong>(java.lang.String classname)</code>
<div class="block">Sets the class to run <code>rmic</code> against;
optional</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><strong><a href="../../../../../org/apache/tools/ant/taskdefs/Rmic.html#setClasspath(org.apache.tools.ant.types.Path)">setClasspath</a></strong>(<a href="../../../../../org/apache/tools/ant/types/Path.html" title="class in org.apache.tools.ant.types">Path</a> classpath)</code>
<div class="block">Set the classpath to be used for this compilation.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><strong><a href="../../../../../org/apache/tools/ant/taskdefs/Rmic.html#setClasspathRef(org.apache.tools.ant.types.Reference)">setClasspathRef</a></strong>(<a href="../../../../../org/apache/tools/ant/types/Reference.html" title="class in org.apache.tools.ant.types">Reference</a> pathRef)</code>
<div class="block">Adds to the classpath a reference to
a <path> defined elsewhere.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><strong><a href="../../../../../org/apache/tools/ant/taskdefs/Rmic.html#setCompiler(java.lang.String)">setCompiler</a></strong>(java.lang.String compiler)</code>
<div class="block">Sets the compiler implementation to use; optional,
defaults to the value of the <code>build.rmic</code> property,
or failing that, default compiler for the current VM</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><strong><a href="../../../../../org/apache/tools/ant/taskdefs/Rmic.html#setDebug(boolean)">setDebug</a></strong>(boolean debug)</code>
<div class="block">Generate debug info (passes -g to rmic);
optional, defaults to false</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><strong><a href="../../../../../org/apache/tools/ant/taskdefs/Rmic.html#setDestdir(java.io.File)">setDestdir</a></strong>(java.io.File destdir)</code>
<div class="block">Sets the base directory to output the generated files.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><strong><a href="../../../../../org/apache/tools/ant/taskdefs/Rmic.html#setExecutable(java.lang.String)">setExecutable</a></strong>(java.lang.String ex)</code>
<div class="block">Name of the executable to use when forking.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><strong><a href="../../../../../org/apache/tools/ant/taskdefs/Rmic.html#setExtdirs(org.apache.tools.ant.types.Path)">setExtdirs</a></strong>(<a href="../../../../../org/apache/tools/ant/types/Path.html" title="class in org.apache.tools.ant.types">Path</a> extDirs)</code>
<div class="block">Sets the extension directories that will be used during the
compilation; optional.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><strong><a href="../../../../../org/apache/tools/ant/taskdefs/Rmic.html#setFiltering(boolean)">setFiltering</a></strong>(boolean filter)</code>
<div class="block">Sets token filtering [optional], default=false</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><strong><a href="../../../../../org/apache/tools/ant/taskdefs/Rmic.html#setIdl(boolean)">setIdl</a></strong>(boolean idl)</code>
<div class="block">Indicates that IDL output should be
generated.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><strong><a href="../../../../../org/apache/tools/ant/taskdefs/Rmic.html#setIdlopts(java.lang.String)">setIdlopts</a></strong>(java.lang.String idlOpts)</code>
<div class="block">pass additional arguments for IDL compile</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><strong><a href="../../../../../org/apache/tools/ant/taskdefs/Rmic.html#setIiop(boolean)">setIiop</a></strong>(boolean iiop)</code>
<div class="block">Indicates that IIOP compatible stubs should
be generated; optional, defaults to false
if not set.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><strong><a href="../../../../../org/apache/tools/ant/taskdefs/Rmic.html#setIiopopts(java.lang.String)">setIiopopts</a></strong>(java.lang.String iiopOpts)</code>
<div class="block">Set additional arguments for iiop</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><strong><a href="../../../../../org/apache/tools/ant/taskdefs/Rmic.html#setIncludeantruntime(boolean)">setIncludeantruntime</a></strong>(boolean include)</code>
<div class="block">Sets whether or not to include ant's own classpath in this task's
classpath.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><strong><a href="../../../../../org/apache/tools/ant/taskdefs/Rmic.html#setIncludejavaruntime(boolean)">setIncludejavaruntime</a></strong>(boolean include)</code>
<div class="block">task's classpath.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><strong><a href="../../../../../org/apache/tools/ant/taskdefs/Rmic.html#setListfiles(boolean)">setListfiles</a></strong>(boolean list)</code>
<div class="block">If true, list the source files being handed off to the compiler.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><strong><a href="../../../../../org/apache/tools/ant/taskdefs/Rmic.html#setSourceBase(java.io.File)">setSourceBase</a></strong>(java.io.File sourceBase)</code>
<div class="block">optional directory to save generated source files to.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><strong><a href="../../../../../org/apache/tools/ant/taskdefs/Rmic.html#setStubVersion(java.lang.String)">setStubVersion</a></strong>(java.lang.String stubVersion)</code>
<div class="block">Specify the JDK version for the generated stub code.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><strong><a href="../../../../../org/apache/tools/ant/taskdefs/Rmic.html#setVerify(boolean)">setVerify</a></strong>(boolean verify)</code>
<div class="block">Flag to enable verification so that the classes
found by the directory match are
checked to see if they implement java.rmi.Remote.</div>
</td>
</tr>
</table>
<ul class="blockList">
<li class="blockList"><a name="methods_inherited_from_class_org.apache.tools.ant.taskdefs.MatchingTask">
<!-- -->
</a>
<h3>Methods inherited from class org.apache.tools.ant.taskdefs.<a href="../../../../../org/apache/tools/ant/taskdefs/MatchingTask.html" title="class in org.apache.tools.ant.taskdefs">MatchingTask</a></h3>
<code><a href="../../../../../org/apache/tools/ant/taskdefs/MatchingTask.html#add(org.apache.tools.ant.types.selectors.FileSelector)">add</a>, <a href="../../../../../org/apache/tools/ant/taskdefs/MatchingTask.html#addAnd(org.apache.tools.ant.types.selectors.AndSelector)">addAnd</a>, <a href="../../../../../org/apache/tools/ant/taskdefs/MatchingTask.html#addContains(org.apache.tools.ant.types.selectors.ContainsSelector)">addContains</a>, <a href="../../../../../org/apache/tools/ant/taskdefs/MatchingTask.html#addContainsRegexp(org.apache.tools.ant.types.selectors.ContainsRegexpSelector)">addContainsRegexp</a>, <a href="../../../../../org/apache/tools/ant/taskdefs/MatchingTask.html#addCustom(org.apache.tools.ant.types.selectors.ExtendSelector)">addCustom</a>, <a href="../../../../../org/apache/tools/ant/taskdefs/MatchingTask.html#addDate(org.apache.tools.ant.types.selectors.DateSelector)">addDate</a>, <a href="../../../../../org/apache/tools/ant/taskdefs/MatchingTask.html#addDepend(org.apache.tools.ant.types.selectors.DependSelector)">addDepend</a>, <a href="../../../../../org/apache/tools/ant/taskdefs/MatchingTask.html#addDepth(org.apache.tools.ant.types.selectors.DepthSelector)">addDepth</a>, <a href="../../../../../org/apache/tools/ant/taskdefs/MatchingTask.html#addDifferent(org.apache.tools.ant.types.selectors.DifferentSelector)">addDifferent</a>, <a href="../../../../../org/apache/tools/ant/taskdefs/MatchingTask.html#addFilename(org.apache.tools.ant.types.selectors.FilenameSelector)">addFilename</a>, <a href="../../../../../org/apache/tools/ant/taskdefs/MatchingTask.html#addMajority(org.apache.tools.ant.types.selectors.MajoritySelector)">addMajority</a>, <a href="../../../../../org/apache/tools/ant/taskdefs/MatchingTask.html#addModified(org.apache.tools.ant.types.selectors.modifiedselector.ModifiedSelector)">addModified</a>, <a href="../../../../../org/apache/tools/ant/taskdefs/MatchingTask.html#addNone(org.apache.tools.ant.types.selectors.NoneSelector)">addNone</a>, <a href="../../../../../org/apache/tools/ant/taskdefs/MatchingTask.html#addNot(org.apache.tools.ant.types.selectors.NotSelector)">addNot</a>, <a href="../../../../../org/apache/tools/ant/taskdefs/MatchingTask.html#addOr(org.apache.tools.ant.types.selectors.OrSelector)">addOr</a>, <a href="../../../../../org/apache/tools/ant/taskdefs/MatchingTask.html#addPresent(org.apache.tools.ant.types.selectors.PresentSelector)">addPresent</a>, <a href="../../../../../org/apache/tools/ant/taskdefs/MatchingTask.html#addSelector(org.apache.tools.ant.types.selectors.SelectSelector)">addSelector</a>, <a href="../../../../../org/apache/tools/ant/taskdefs/MatchingTask.html#addSize(org.apache.tools.ant.types.selectors.SizeSelector)">addSize</a>, <a href="../../../../../org/apache/tools/ant/taskdefs/MatchingTask.html#addType(org.apache.tools.ant.types.selectors.TypeSelector)">addType</a>, <a href="../../../../../org/apache/tools/ant/taskdefs/MatchingTask.html#appendSelector(org.apache.tools.ant.types.selectors.FileSelector)">appendSelector</a>, <a href="../../../../../org/apache/tools/ant/taskdefs/MatchingTask.html#createExclude()">createExclude</a>, <a href="../../../../../org/apache/tools/ant/taskdefs/MatchingTask.html#createExcludesFile()">createExcludesFile</a>, <a href="../../../../../org/apache/tools/ant/taskdefs/MatchingTask.html#createInclude()">createInclude</a>, <a href="../../../../../org/apache/tools/ant/taskdefs/MatchingTask.html#createIncludesFile()">createIncludesFile</a>, <a href="../../../../../org/apache/tools/ant/taskdefs/MatchingTask.html#createPatternSet()">createPatternSet</a>, <a href="../../../../../org/apache/tools/ant/taskdefs/MatchingTask.html#getDirectoryScanner(java.io.File)">getDirectoryScanner</a>, <a href="../../../../../org/apache/tools/ant/taskdefs/MatchingTask.html#getImplicitFileSet()">getImplicitFileSet</a>, <a href="../../../../../org/apache/tools/ant/taskdefs/MatchingTask.html#getSelectors(org.apache.tools.ant.Project)">getSelectors</a>, <a href="../../../../../org/apache/tools/ant/taskdefs/MatchingTask.html#hasSelectors()">hasSelectors</a>, <a href="../../../../../org/apache/tools/ant/taskdefs/MatchingTask.html#selectorCount()">selectorCount</a>, <a href="../../../../../org/apache/tools/ant/taskdefs/MatchingTask.html#selectorElements()">selectorElements</a>, <a href="../../../../../org/apache/tools/ant/taskdefs/MatchingTask.html#setCaseSensitive(boolean)">setCaseSensitive</a>, <a href="../../../../../org/apache/tools/ant/taskdefs/MatchingTask.html#setDefaultexcludes(boolean)">setDefaultexcludes</a>, <a href="../../../../../org/apache/tools/ant/taskdefs/MatchingTask.html#setExcludes(java.lang.String)">setExcludes</a>, <a href="../../../../../org/apache/tools/ant/taskdefs/MatchingTask.html#setExcludesfile(java.io.File)">setExcludesfile</a>, <a href="../../../../../org/apache/tools/ant/taskdefs/MatchingTask.html#setFollowSymlinks(boolean)">setFollowSymlinks</a>, <a href="../../../../../org/apache/tools/ant/taskdefs/MatchingTask.html#setIncludes(java.lang.String)">setIncludes</a>, <a href="../../../../../org/apache/tools/ant/taskdefs/MatchingTask.html#setIncludesfile(java.io.File)">setIncludesfile</a>, <a href="../../../../../org/apache/tools/ant/taskdefs/MatchingTask.html#setProject(org.apache.tools.ant.Project)">setProject</a>, <a href="../../../../../org/apache/tools/ant/taskdefs/MatchingTask.html#XsetIgnore(java.lang.String)">XsetIgnore</a>, <a href="../../../../../org/apache/tools/ant/taskdefs/MatchingTask.html#XsetItems(java.lang.String)">XsetItems</a></code></li>
</ul>
<ul class="blockList">
<li class="blockList"><a name="methods_inherited_from_class_org.apache.tools.ant.Task">
<!-- -->
</a>
<h3>Methods inherited from class org.apache.tools.ant.<a href="../../../../../org/apache/tools/ant/Task.html" title="class in org.apache.tools.ant">Task</a></h3>
<code><a href="../../../../../org/apache/tools/ant/Task.html#bindToOwner(org.apache.tools.ant.Task)">bindToOwner</a>, <a href="../../../../../org/apache/tools/ant/Task.html#getOwningTarget()">getOwningTarget</a>, <a href="../../../../../org/apache/tools/ant/Task.html#getRuntimeConfigurableWrapper()">getRuntimeConfigurableWrapper</a>, <a href="../../../../../org/apache/tools/ant/Task.html#getTaskName()">getTaskName</a>, <a href="../../../../../org/apache/tools/ant/Task.html#getTaskType()">getTaskType</a>, <a href="../../../../../org/apache/tools/ant/Task.html#getWrapper()">getWrapper</a>, <a href="../../../../../org/apache/tools/ant/Task.html#handleErrorFlush(java.lang.String)">handleErrorFlush</a>, <a href="../../../../../org/apache/tools/ant/Task.html#handleErrorOutput(java.lang.String)">handleErrorOutput</a>, <a href="../../../../../org/apache/tools/ant/Task.html#handleFlush(java.lang.String)">handleFlush</a>, <a href="../../../../../org/apache/tools/ant/Task.html#handleInput(byte[], int, int)">handleInput</a>, <a href="../../../../../org/apache/tools/ant/Task.html#handleOutput(java.lang.String)">handleOutput</a>, <a href="../../../../../org/apache/tools/ant/Task.html#init()">init</a>, <a href="../../../../../org/apache/tools/ant/Task.html#isInvalid()">isInvalid</a>, <a href="../../../../../org/apache/tools/ant/Task.html#log(java.lang.String)">log</a>, <a href="../../../../../org/apache/tools/ant/Task.html#log(java.lang.String, int)">log</a>, <a href="../../../../../org/apache/tools/ant/Task.html#log(java.lang.String, java.lang.Throwable, int)">log</a>, <a href="../../../../../org/apache/tools/ant/Task.html#log(java.lang.Throwable, int)">log</a>, <a href="../../../../../org/apache/tools/ant/Task.html#maybeConfigure()">maybeConfigure</a>, <a href="../../../../../org/apache/tools/ant/Task.html#perform()">perform</a>, <a href="../../../../../org/apache/tools/ant/Task.html#reconfigure()">reconfigure</a>, <a href="../../../../../org/apache/tools/ant/Task.html#setOwningTarget(org.apache.tools.ant.Target)">setOwningTarget</a>, <a href="../../../../../org/apache/tools/ant/Task.html#setRuntimeConfigurableWrapper(org.apache.tools.ant.RuntimeConfigurable)">setRuntimeConfigurableWrapper</a>, <a href="../../../../../org/apache/tools/ant/Task.html#setTaskName(java.lang.String)">setTaskName</a>, <a href="../../../../../org/apache/tools/ant/Task.html#setTaskType(java.lang.String)">setTaskType</a></code></li>
</ul>
<ul class="blockList">
<li class="blockList"><a name="methods_inherited_from_class_org.apache.tools.ant.ProjectComponent">
<!-- -->
</a>
<h3>Methods inherited from class org.apache.tools.ant.<a href="../../../../../org/apache/tools/ant/ProjectComponent.html" title="class in org.apache.tools.ant">ProjectComponent</a></h3>
<code><a href="../../../../../org/apache/tools/ant/ProjectComponent.html#clone()">clone</a>, <a href="../../../../../org/apache/tools/ant/ProjectComponent.html#getDescription()">getDescription</a>, <a href="../../../../../org/apache/tools/ant/ProjectComponent.html#getLocation()">getLocation</a>, <a href="../../../../../org/apache/tools/ant/ProjectComponent.html#getProject()">getProject</a>, <a href="../../../../../org/apache/tools/ant/ProjectComponent.html#setDescription(java.lang.String)">setDescription</a>, <a href="../../../../../org/apache/tools/ant/ProjectComponent.html#setLocation(org.apache.tools.ant.Location)">setLocation</a></code></li>
</ul>
<ul class="blockList">
<li class="blockList"><a name="methods_inherited_from_class_java.lang.Object">
<!-- -->
</a>
<h3>Methods inherited from class java.lang.Object</h3>
<code>equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait</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="ERROR_RMIC_FAILED">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>ERROR_RMIC_FAILED</h4>
<pre>public static final java.lang.String ERROR_RMIC_FAILED</pre>
<div class="block">rmic failed message</div>
<dl><dt><span class="strong">See Also:</span></dt><dd><a href="../../../../../constant-values.html#org.apache.tools.ant.taskdefs.Rmic.ERROR_RMIC_FAILED">Constant Field Values</a></dd></dl>
</li>
</ul>
<a name="ERROR_UNABLE_TO_VERIFY_CLASS">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>ERROR_UNABLE_TO_VERIFY_CLASS</h4>
<pre>public static final java.lang.String ERROR_UNABLE_TO_VERIFY_CLASS</pre>
<div class="block">unable to verify message</div>
<dl><dt><span class="strong">See Also:</span></dt><dd><a href="../../../../../constant-values.html#org.apache.tools.ant.taskdefs.Rmic.ERROR_UNABLE_TO_VERIFY_CLASS">Constant Field Values</a></dd></dl>
</li>
</ul>
<a name="ERROR_NOT_FOUND">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>ERROR_NOT_FOUND</h4>
<pre>public static final java.lang.String ERROR_NOT_FOUND</pre>
<div class="block">could not be found message</div>
<dl><dt><span class="strong">See Also:</span></dt><dd><a href="../../../../../constant-values.html#org.apache.tools.ant.taskdefs.Rmic.ERROR_NOT_FOUND">Constant Field Values</a></dd></dl>
</li>
</ul>
<a name="ERROR_NOT_DEFINED">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>ERROR_NOT_DEFINED</h4>
<pre>public static final java.lang.String ERROR_NOT_DEFINED</pre>
<div class="block">not defined message</div>
<dl><dt><span class="strong">See Also:</span></dt><dd><a href="../../../../../constant-values.html#org.apache.tools.ant.taskdefs.Rmic.ERROR_NOT_DEFINED">Constant Field Values</a></dd></dl>
</li>
</ul>
<a name="ERROR_LOADING_CAUSED_EXCEPTION">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>ERROR_LOADING_CAUSED_EXCEPTION</h4>
<pre>public static final java.lang.String ERROR_LOADING_CAUSED_EXCEPTION</pre>
<div class="block">loaded error message</div>
<dl><dt><span class="strong">See Also:</span></dt><dd><a href="../../../../../constant-values.html#org.apache.tools.ant.taskdefs.Rmic.ERROR_LOADING_CAUSED_EXCEPTION">Constant Field Values</a></dd></dl>
</li>
</ul>
<a name="ERROR_NO_BASE_EXISTS">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>ERROR_NO_BASE_EXISTS</h4>
<pre>public static final java.lang.String ERROR_NO_BASE_EXISTS</pre>
<div class="block">base not exists message</div>
<dl><dt><span class="strong">See Also:</span></dt><dd><a href="../../../../../constant-values.html#org.apache.tools.ant.taskdefs.Rmic.ERROR_NO_BASE_EXISTS">Constant Field Values</a></dd></dl>
</li>
</ul>
<a name="ERROR_NOT_A_DIR">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>ERROR_NOT_A_DIR</h4>
<pre>public static final java.lang.String ERROR_NOT_A_DIR</pre>
<div class="block">base not a directory message</div>
<dl><dt><span class="strong">See Also:</span></dt><dd><a href="../../../../../constant-values.html#org.apache.tools.ant.taskdefs.Rmic.ERROR_NOT_A_DIR">Constant Field Values</a></dd></dl>
</li>
</ul>
<a name="ERROR_BASE_NOT_SET">
<!-- -->
</a>
<ul class="blockListLast">
<li class="blockList">
<h4>ERROR_BASE_NOT_SET</h4>
<pre>public static final java.lang.String ERROR_BASE_NOT_SET</pre>
<div class="block">base attribute not set message</div>
<dl><dt><span class="strong">See Also:</span></dt><dd><a href="../../../../../constant-values.html#org.apache.tools.ant.taskdefs.Rmic.ERROR_BASE_NOT_SET">Constant Field Values</a></dd></dl>
</li>
</ul>
</li>
</ul>
<!-- ========= CONSTRUCTOR DETAIL ======== -->
<ul class="blockList">
<li class="blockList"><a name="constructor_detail">
<!-- -->
</a>
<h3>Constructor Detail</h3>
<a name="Rmic()">
<!-- -->
</a>
<ul class="blockListLast">
<li class="blockList">
<h4>Rmic</h4>
<pre>public Rmic()</pre>
<div class="block">Constructor for Rmic.</div>
</li>
</ul>
</li>
</ul>
<!-- ============ METHOD DETAIL ========== -->
<ul class="blockList">
<li class="blockList"><a name="method_detail">
<!-- -->
</a>
<h3>Method Detail</h3>
<a name="setBase(java.io.File)">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>setBase</h4>
<pre>public void setBase(java.io.File base)</pre>
<div class="block">Sets the location to store the compiled files; required</div>
<dl><dt><span class="strong">Parameters:</span></dt><dd><code>base</code> - the location to store the compiled files</dd></dl>
</li>
</ul>
<a name="setDestdir(java.io.File)">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>setDestdir</h4>
<pre>public void setDestdir(java.io.File destdir)</pre>
<div class="block">Sets the base directory to output the generated files.</div>
<dl><dt><span class="strong">Parameters:</span></dt><dd><code>destdir</code> - the base directory to output the generated files.</dd><dt><span class="strong">Since:</span></dt>
<dd>Ant 1.8.0</dd></dl>
</li>
</ul>
<a name="getDestdir()">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>getDestdir</h4>
<pre>public java.io.File getDestdir()</pre>
<div class="block">Gets the base directory to output the generated files.</div>
<dl><dt><span class="strong">Returns:</span></dt><dd>the base directory to output the generated files.</dd><dt><span class="strong">Since:</span></dt>
<dd>Ant 1.8.0</dd></dl>
</li>
</ul>
<a name="getOutputDir()">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>getOutputDir</h4>
<pre>public java.io.File getOutputDir()</pre>
<div class="block">Gets the base directory to output the generated files,
favoring destdir if set, otherwise defaulting to basedir.</div>
<dl><dt><span class="strong">Returns:</span></dt><dd>the actual directory to output to (either destdir or basedir)</dd><dt><span class="strong">Since:</span></dt>
<dd>Ant 1.8.0</dd></dl>
</li>
</ul>
<a name="getBase()">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>getBase</h4>
<pre>public java.io.File getBase()</pre>
<div class="block">Gets the base directory to output generated class.</div>
<dl><dt><span class="strong">Returns:</span></dt><dd>the location of the compiled files</dd></dl>
</li>
</ul>
<a name="setClassname(java.lang.String)">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>setClassname</h4>
<pre>public void setClassname(java.lang.String classname)</pre>
<div class="block">Sets the class to run <code>rmic</code> against;
optional</div>
<dl><dt><span class="strong">Parameters:</span></dt><dd><code>classname</code> - the name of the class for rmic to create code for</dd></dl>
</li>
</ul>
<a name="getClassname()">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>getClassname</h4>
<pre>public java.lang.String getClassname()</pre>
<div class="block">Gets the class name to compile.</div>
<dl><dt><span class="strong">Returns:</span></dt><dd>the name of the class to compile</dd></dl>
</li>
</ul>
<a name="setSourceBase(java.io.File)">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>setSourceBase</h4>
<pre>public void setSourceBase(java.io.File sourceBase)</pre>
<div class="block">optional directory to save generated source files to.</div>
<dl><dt><span class="strong">Parameters:</span></dt><dd><code>sourceBase</code> - the directory to save source files to.</dd></dl>
</li>
</ul>
<a name="getSourceBase()">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>getSourceBase</h4>
<pre>public java.io.File getSourceBase()</pre>
<div class="block">Gets the source dirs to find the source java files.</div>
<dl><dt><span class="strong">Returns:</span></dt><dd>sourceBase the directory containing the source files.</dd></dl>
</li>
</ul>
<a name="setStubVersion(java.lang.String)">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>setStubVersion</h4>
<pre>public void setStubVersion(java.lang.String stubVersion)</pre>
<div class="block">Specify the JDK version for the generated stub code.
Specify "1.1" to pass the "-v1.1" option to rmic.</div>
<dl><dt><span class="strong">Parameters:</span></dt><dd><code>stubVersion</code> - the JDK version</dd></dl>
</li>
</ul>
<a name="getStubVersion()">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>getStubVersion</h4>
<pre>public java.lang.String getStubVersion()</pre>
<div class="block">Gets the JDK version for the generated stub code.</div>
<dl><dt><span class="strong">Returns:</span></dt><dd>stubVersion</dd></dl>
</li>
</ul>
<a name="setFiltering(boolean)">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>setFiltering</h4>
<pre>public void setFiltering(boolean filter)</pre>
<div class="block">Sets token filtering [optional], default=false</div>
<dl><dt><span class="strong">Parameters:</span></dt><dd><code>filter</code> - turn on token filtering</dd></dl>
</li>
</ul>
<a name="getFiltering()">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>getFiltering</h4>
<pre>public boolean getFiltering()</pre>
<div class="block">Gets whether token filtering is set</div>
<dl><dt><span class="strong">Returns:</span></dt><dd>filtering</dd></dl>
</li>
</ul>
<a name="setDebug(boolean)">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>setDebug</h4>
<pre>public void setDebug(boolean debug)</pre>
<div class="block">Generate debug info (passes -g to rmic);
optional, defaults to false</div>
<dl><dt><span class="strong">Parameters:</span></dt><dd><code>debug</code> - turn on debug info</dd></dl>
</li>
</ul>
<a name="getDebug()">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>getDebug</h4>
<pre>public boolean getDebug()</pre>
<div class="block">Gets the debug flag.</div>
<dl><dt><span class="strong">Returns:</span></dt><dd>debug</dd></dl>
</li>
</ul>
<a name="setClasspath(org.apache.tools.ant.types.Path)">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>setClasspath</h4>
<pre>public void setClasspath(<a href="../../../../../org/apache/tools/ant/types/Path.html" title="class in org.apache.tools.ant.types">Path</a> classpath)</pre>
<div class="block">Set the classpath to be used for this compilation.</div>
<dl><dt><span class="strong">Parameters:</span></dt><dd><code>classpath</code> - the classpath used for this compilation</dd></dl>
</li>
</ul>
<a name="createClasspath()">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>createClasspath</h4>
<pre>public <a href="../../../../../org/apache/tools/ant/types/Path.html" title="class in org.apache.tools.ant.types">Path</a> createClasspath()</pre>
<div class="block">Creates a nested classpath element.</div>
<dl><dt><span class="strong">Returns:</span></dt><dd>classpath</dd></dl>
</li>
</ul>
<a name="setClasspathRef(org.apache.tools.ant.types.Reference)">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>setClasspathRef</h4>
<pre>public void setClasspathRef(<a href="../../../../../org/apache/tools/ant/types/Reference.html" title="class in org.apache.tools.ant.types">Reference</a> pathRef)</pre>
<div class="block">Adds to the classpath a reference to
a <path> defined elsewhere.</div>
<dl><dt><span class="strong">Parameters:</span></dt><dd><code>pathRef</code> - the reference to add to the classpath</dd></dl>
</li>
</ul>
<a name="getClasspath()">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>getClasspath</h4>
<pre>public <a href="../../../../../org/apache/tools/ant/types/Path.html" title="class in org.apache.tools.ant.types">Path</a> getClasspath()</pre>
<div class="block">Gets the classpath.</div>
<dl><dt><span class="strong">Returns:</span></dt><dd>the classpath</dd></dl>
</li>
</ul>
<a name="setVerify(boolean)">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>setVerify</h4>
<pre>public void setVerify(boolean verify)</pre>
<div class="block">Flag to enable verification so that the classes
found by the directory match are
checked to see if they implement java.rmi.Remote.
optional; This defaults to false if not set.</div>
<dl><dt><span class="strong">Parameters:</span></dt><dd><code>verify</code> - turn on verification for classes</dd></dl>
</li>
</ul>
<a name="getVerify()">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>getVerify</h4>
<pre>public boolean getVerify()</pre>
<div class="block">Get verify flag.</div>
<dl><dt><span class="strong">Returns:</span></dt><dd>verify</dd></dl>
</li>
</ul>
<a name="setIiop(boolean)">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>setIiop</h4>
<pre>public void setIiop(boolean iiop)</pre>
<div class="block">Indicates that IIOP compatible stubs should
be generated; optional, defaults to false
if not set.</div>
<dl><dt><span class="strong">Parameters:</span></dt><dd><code>iiop</code> - generate IIOP compatible stubs</dd></dl>
</li>
</ul>
<a name="getIiop()">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>getIiop</h4>
<pre>public boolean getIiop()</pre>
<div class="block">Gets iiop flags.</div>
<dl><dt><span class="strong">Returns:</span></dt><dd>iiop</dd></dl>
</li>
</ul>
<a name="setIiopopts(java.lang.String)">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>setIiopopts</h4>
<pre>public void setIiopopts(java.lang.String iiopOpts)</pre>
<div class="block">Set additional arguments for iiop</div>
<dl><dt><span class="strong">Parameters:</span></dt><dd><code>iiopOpts</code> - additional arguments for iiop</dd></dl>
</li>
</ul>
<a name="getIiopopts()">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>getIiopopts</h4>
<pre>public java.lang.String getIiopopts()</pre>
<div class="block">Gets additional arguments for iiop.</div>
<dl><dt><span class="strong">Returns:</span></dt><dd>iiopOpts</dd></dl>
</li>
</ul>
<a name="setIdl(boolean)">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>setIdl</h4>
<pre>public void setIdl(boolean idl)</pre>
<div class="block">Indicates that IDL output should be
generated. This defaults to false
if not set.</div>
<dl><dt><span class="strong">Parameters:</span></dt><dd><code>idl</code> - generate IDL output</dd></dl>
</li>
</ul>
<a name="getIdl()">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>getIdl</h4>
<pre>public boolean getIdl()</pre>
<div class="block">Gets IDL flags.</div>
<dl><dt><span class="strong">Returns:</span></dt><dd>the idl flag</dd></dl>
</li>
</ul>
<a name="setIdlopts(java.lang.String)">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>setIdlopts</h4>
<pre>public void setIdlopts(java.lang.String idlOpts)</pre>
<div class="block">pass additional arguments for IDL compile</div>
<dl><dt><span class="strong">Parameters:</span></dt><dd><code>idlOpts</code> - additional IDL arguments</dd></dl>
</li>
</ul>
<a name="getIdlopts()">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>getIdlopts</h4>
<pre>public java.lang.String getIdlopts()</pre>
<div class="block">Gets additional arguments for idl compile.</div>
<dl><dt><span class="strong">Returns:</span></dt><dd>the idl options</dd></dl>
</li>
</ul>
<a name="getFileList()">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>getFileList</h4>
<pre>public java.util.Vector getFileList()</pre>
<div class="block">Gets file list to compile.</div>
<dl><dt><span class="strong">Returns:</span></dt><dd>the list of files to compile.</dd></dl>
</li>
</ul>
<a name="setIncludeantruntime(boolean)">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>setIncludeantruntime</h4>
<pre>public void setIncludeantruntime(boolean include)</pre>
<div class="block">Sets whether or not to include ant's own classpath in this task's
classpath.
Optional; default is <code>true</code>.</div>
<dl><dt><span class="strong">Parameters:</span></dt><dd><code>include</code> - if true include ant's classpath</dd></dl>
</li>
</ul>
<a name="getIncludeantruntime()">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>getIncludeantruntime</h4>
<pre>public boolean getIncludeantruntime()</pre>
<div class="block">Gets whether or not the ant classpath is to be included in the
task's classpath.</div>
<dl><dt><span class="strong">Returns:</span></dt><dd>true if ant's classpath is to be included</dd></dl>
</li>
</ul>
<a name="setIncludejavaruntime(boolean)">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>setIncludejavaruntime</h4>
<pre>public void setIncludejavaruntime(boolean include)</pre>
<div class="block">task's classpath.
Enables or disables including the default run-time
libraries from the executing VM; optional,
defaults to false</div>
<dl><dt><span class="strong">Parameters:</span></dt><dd><code>include</code> - if true include default run-time libraries</dd></dl>
</li>
</ul>
<a name="getIncludejavaruntime()">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>getIncludejavaruntime</h4>
<pre>public boolean getIncludejavaruntime()</pre>
<div class="block">Gets whether or not the java runtime should be included in this
task's classpath.</div>
<dl><dt><span class="strong">Returns:</span></dt><dd>true if default run-time libraries are included</dd></dl>
</li>
</ul>
<a name="setExtdirs(org.apache.tools.ant.types.Path)">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>setExtdirs</h4>
<pre>public void setExtdirs(<a href="../../../../../org/apache/tools/ant/types/Path.html" title="class in org.apache.tools.ant.types">Path</a> extDirs)</pre>
<div class="block">Sets the extension directories that will be used during the
compilation; optional.</div>
<dl><dt><span class="strong">Parameters:</span></dt><dd><code>extDirs</code> - the extension directories to be used</dd></dl>
</li>
</ul>
<a name="createExtdirs()">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>createExtdirs</h4>
<pre>public <a href="../../../../../org/apache/tools/ant/types/Path.html" title="class in org.apache.tools.ant.types">Path</a> createExtdirs()</pre>
<div class="block">Maybe creates a nested extdirs element.</div>
<dl><dt><span class="strong">Returns:</span></dt><dd>path object to be configured with the extension directories</dd></dl>
</li>
</ul>
<a name="getExtdirs()">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>getExtdirs</h4>
<pre>public <a href="../../../../../org/apache/tools/ant/types/Path.html" title="class in org.apache.tools.ant.types">Path</a> getExtdirs()</pre>
<div class="block">Gets the extension directories that will be used during the
compilation.</div>
<dl><dt><span class="strong">Returns:</span></dt><dd>the extension directories to be used</dd></dl>
</li>
</ul>
<a name="getCompileList()">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>getCompileList</h4>
<pre>public java.util.Vector getCompileList()</pre>
<dl><dt><span class="strong">Returns:</span></dt><dd>the compile list.</dd></dl>
</li>
</ul>
<a name="setCompiler(java.lang.String)">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>setCompiler</h4>
<pre>public void setCompiler(java.lang.String compiler)</pre>
<div class="block">Sets the compiler implementation to use; optional,
defaults to the value of the <code>build.rmic</code> property,
or failing that, default compiler for the current VM</div>
<dl><dt><span class="strong">Parameters:</span></dt><dd><code>compiler</code> - the compiler implemention to use</dd><dt><span class="strong">Since:</span></dt>
<dd>Ant 1.5</dd></dl>
</li>
</ul>
<a name="getCompiler()">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>getCompiler</h4>
<pre>public java.lang.String getCompiler()</pre>
<div class="block">get the name of the current compiler</div>
<dl><dt><span class="strong">Returns:</span></dt><dd>the name of the compiler</dd><dt><span class="strong">Since:</span></dt>
<dd>Ant 1.5</dd></dl>
</li>
</ul>
<a name="createCompilerArg()">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>createCompilerArg</h4>
<pre>public <a href="../../../../../org/apache/tools/ant/taskdefs/Rmic.ImplementationSpecificArgument.html" title="class in org.apache.tools.ant.taskdefs">Rmic.ImplementationSpecificArgument</a> createCompilerArg()</pre>
<div class="block">Adds an implementation specific command line argument.</div>
<dl><dt><span class="strong">Returns:</span></dt><dd>an object to be configured with a command line argument</dd><dt><span class="strong">Since:</span></dt>
<dd>Ant 1.5</dd></dl>
</li>
</ul>
<a name="getCurrentCompilerArgs()">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>getCurrentCompilerArgs</h4>
<pre>public java.lang.String[] getCurrentCompilerArgs()</pre>
<div class="block">Get the additional implementation specific command line arguments.</div>
<dl><dt><span class="strong">Returns:</span></dt><dd>array of command line arguments, guaranteed to be non-null.</dd><dt><span class="strong">Since:</span></dt>
<dd>Ant 1.5</dd></dl>
</li>
</ul>
<a name="setExecutable(java.lang.String)">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>setExecutable</h4>
<pre>public void setExecutable(java.lang.String ex)</pre>
<div class="block">Name of the executable to use when forking.</div>
<dl><dt><span class="strong">Since:</span></dt>
<dd>Ant 1.8.0</dd></dl>
</li>
</ul>
<a name="getExecutable()">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>getExecutable</h4>
<pre>public java.lang.String getExecutable()</pre>
<div class="block">Explicitly specified name of the executable to use when forking
- if any.</div>
<dl><dt><span class="strong">Since:</span></dt>
<dd>Ant 1.8.0</dd></dl>
</li>
</ul>
<a name="createCompilerClasspath()">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>createCompilerClasspath</h4>
<pre>public <a href="../../../../../org/apache/tools/ant/types/Path.html" title="class in org.apache.tools.ant.types">Path</a> createCompilerClasspath()</pre>
<div class="block">The classpath to use when loading the compiler implementation
if it is not a built-in one.</div>
<dl><dt><span class="strong">Since:</span></dt>
<dd>Ant 1.8.0</dd></dl>
</li>
</ul>
<a name="setListfiles(boolean)">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>setListfiles</h4>
<pre>public void setListfiles(boolean list)</pre>
<div class="block">If true, list the source files being handed off to the compiler.</div>
<dl><dt><span class="strong">Parameters:</span></dt><dd><code>list</code> - if true list the source files</dd><dt><span class="strong">Since:</span></dt>
<dd>Ant 1.8.0</dd></dl>
</li>
</ul>
<a name="add(org.apache.tools.ant.taskdefs.rmic.RmicAdapter)">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>add</h4>
<pre>public void add(<a href="../../../../../org/apache/tools/ant/taskdefs/rmic/RmicAdapter.html" title="interface in org.apache.tools.ant.taskdefs.rmic">RmicAdapter</a> adapter)</pre>
<div class="block">Set the compiler adapter explicitly.</div>
<dl><dt><span class="strong">Since:</span></dt>
<dd>Ant 1.8.0</dd></dl>
</li>
</ul>
<a name="execute()">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>execute</h4>
<pre>public void execute()
throws <a href="../../../../../org/apache/tools/ant/BuildException.html" title="class in org.apache.tools.ant">BuildException</a></pre>
<div class="block">execute by creating an instance of an implementation
class and getting to do the work</div>
<dl>
<dt><strong>Overrides:</strong></dt>
<dd><code><a href="../../../../../org/apache/tools/ant/Task.html#execute()">execute</a></code> in class <code><a href="../../../../../org/apache/tools/ant/Task.html" title="class in org.apache.tools.ant">Task</a></code></dd>
<dt><span class="strong">Throws:</span></dt>
<dd><code><a href="../../../../../org/apache/tools/ant/BuildException.html" title="class in org.apache.tools.ant">BuildException</a></code> - if there's a problem with baseDir or RMIC</dd></dl>
</li>
</ul>
<a name="cleanup()">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>cleanup</h4>
<pre>protected void cleanup()</pre>
<div class="block">Cleans up resources.</div>
<dl><dt><span class="strong">Since:</span></dt>
<dd>Ant 1.8.0</dd></dl>
</li>
</ul>
<a name="scanDir(java.io.File, java.lang.String[], org.apache.tools.ant.util.FileNameMapper)">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>scanDir</h4>
<pre>protected void scanDir(java.io.File baseDir,
java.lang.String[] files,
<a href="../../../../../org/apache/tools/ant/util/FileNameMapper.html" title="interface in org.apache.tools.ant.util">FileNameMapper</a> mapper)</pre>
<div class="block">Scans the directory looking for class files to be compiled.
The result is returned in the class variable compileList.</div>
<dl><dt><span class="strong">Parameters:</span></dt><dd><code>baseDir</code> - the base direction</dd><dd><code>files</code> - the list of files to scan</dd><dd><code>mapper</code> - the mapper of files to target files</dd></dl>
</li>
</ul>
<a name="isValidRmiRemote(java.lang.String)">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>isValidRmiRemote</h4>
<pre>public boolean isValidRmiRemote(java.lang.String classname)</pre>
<div class="block">Load named class and test whether it can be rmic'ed</div>
<dl><dt><span class="strong">Parameters:</span></dt><dd><code>classname</code> - the name of the class to be tested</dd>
<dt><span class="strong">Returns:</span></dt><dd>true if the class can be rmic'ed</dd></dl>
</li>
</ul>
<a name="getRemoteInterface(java.lang.Class)">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>getRemoteInterface</h4>
<pre>public java.lang.Class getRemoteInterface(java.lang.Class testClass)</pre>
<div class="block">Returns the topmost interface that extends Remote for a given
class - if one exists.</div>
<dl><dt><span class="strong">Parameters:</span></dt><dd><code>testClass</code> - the class to be tested</dd>
<dt><span class="strong">Returns:</span></dt><dd>the topmost interface that extends Remote, or null if there
is none.</dd></dl>
</li>
</ul>
<a name="getLoader()">
<!-- -->
</a>
<ul class="blockListLast">
<li class="blockList">
<h4>getLoader</h4>
<pre>public java.lang.ClassLoader getLoader()</pre>
<div class="block">Classloader for the user-specified classpath.</div>
<dl><dt><span class="strong">Returns:</span></dt><dd>the classloader</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="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="../../../../../org/apache/tools/ant/taskdefs/Retry.html" title="class in org.apache.tools.ant.taskdefs"><span class="strong">Prev Class</span></a></li>
<li><a href="../../../../../org/apache/tools/ant/taskdefs/Rmic.ImplementationSpecificArgument.html" title="class in org.apache.tools.ant.taskdefs"><span class="strong">Next Class</span></a></li>
</ul>
<ul class="navList">
<li><a href="../../../../../index.html?org/apache/tools/ant/taskdefs/Rmic.html" target="_top">Frames</a></li>
<li><a href="Rmic.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: </li>
<li><a href="#nested_class_summary">Nested</a> | </li>
<li><a href="#field_summary">Field</a> | </li>
<li><a href="#constructor_summary">Constr</a> | </li>
<li><a href="#method_summary">Method</a></li>
</ul>
<ul class="subNavList">
<li>Detail: </li>
<li><a href="#field_detail">Field</a> | </li>
<li><a href="#constructor_detail">Constr</a> | </li>
<li><a href="#method_detail">Method</a></li>
</ul>
</div>
<a name="skip-navbar_bottom">
<!-- -->
</a></div>
<!-- ======== END OF BOTTOM NAVBAR ======= -->
</body>
</html>