blob: 1796d774f19d8dd946b46bad700c0446404fc661 [file] [log] [blame]
<!--
~ Licensed to the Apache Software Foundation (ASF) under one
~ or more contributor license agreements. See the NOTICE file
~ distributed with this work for additional information
~ regarding copyright ownership. The ASF licenses this file
~ to you under the Apache License, Version 2.0 (the
~ "License"); you may not use this file except in compliance
~ with the License. You may obtain a copy of the License at
~
~ http://www.apache.org/licenses/LICENSE-2.0
~
~ Unless required by applicable law or agreed to in writing,
~ software distributed under the License is distributed on an
~ "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
~ KIND, either express or implied. See the License for the
~ specific language governing permissions and limitations
~ under the License.
-->
<HTML>
<BODY>
<p>Contains implementations of commandline tools and Ant Tasks.</p>
<p>Each subpackage, e.g., <code>com.fs.jlo.tools.foo</code> contains:</p>
<ul>
<li>One or more implementations of the {@link com.fs.jlo.tools.Command} interface
that perform a given function.</li>
<li>In the <code>com.fs.jlo.tools.foo.cline</code> subpackage, a class with a
<code>main()</code> method that uses the above {@link com.fs.jlo.tools.Command}
implementation to perform some function, e.g., deploying a ODE system.</li>
<li>In the <code>com.fs.jlo.tools.foo.ant</code> subpackage, a class that extends
{@link com.fs.jlo.tools.CommandTask} (which, in turn, extends
{@link org.apache.ant.Task}) that uses the above {@link com.fs.jlo.tools.Command}
implementation to perform roughly the same function.</li>
</ul>
<p>The ultimate goal of the package is collect a set of reusable &quot;command&quot;
representations that can be invoked under different contexts like the commandline,
an Ant build, or from a wizard or tool in a GUI application.</p>
</BODY>
</HTML>