From 1f334e3a60334a68a9856dfe0ab21aa9cbc0bd4c Mon Sep 17 00:00:00 2001 From: Gintas Grigelionis Date: Sun, 18 Mar 2018 07:55:29 +0100 Subject: [PATCH] =?UTF-8?q?=E2=80=9Cin=20runtime=E2=80=9D,=20=E2=80=9Cat?= =?UTF-8?q?=20run=20time=E2=80=9D?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- manual/Tasks/available.html | 2 +- manual/Tasks/projecthelper.html | 2 +- manual/Tasks/propertyhelper.html | 2 +- manual/Tasks/rmic.html | 4 ++-- manual/develop.html | 8 ++++---- manual/properties.html | 2 +- manual/tasksoverview.html | 2 +- 7 files changed, 11 insertions(+), 11 deletions(-) diff --git a/manual/Tasks/available.html b/manual/Tasks/available.html index d29e6abf5..9b8073413 100644 --- a/manual/Tasks/available.html +++ b/manual/Tasks/available.html @@ -26,7 +26,7 @@

Available

Description

-

Sets a property if a resource is available at runtime. This resource can be a file, a directory, +

Sets a property if a resource is available at run time. This resource can be a file, a directory, a class in the classpath, or a JVM system resource.

If the resource is present, the property value is set to true by default; otherwise, the property is not set. You can set the value to something other than the default by specifying diff --git a/manual/Tasks/projecthelper.html b/manual/Tasks/projecthelper.html index 46d17b3db..731b3e8b3 100644 --- a/manual/Tasks/projecthelper.html +++ b/manual/Tasks/projecthelper.html @@ -28,7 +28,7 @@

Since Ant 1.8.2

Description

This task is provided for the purpose of allowing the user to install a different ProjectHelper -at runtime.

+at run time.

The helpers will be added after all the already registered helpers, but before the default one (ProjectHelper2)

See the description of Apache Ant's Project Helper for more diff --git a/manual/Tasks/propertyhelper.html b/manual/Tasks/propertyhelper.html index 64ed2c7e5..7c59e7405 100644 --- a/manual/Tasks/propertyhelper.html +++ b/manual/Tasks/propertyhelper.html @@ -28,7 +28,7 @@

Since Ant 1.8.0

Description

This task is provided for the purpose of allowing the user to (a) install a -different PropertyHelper at runtime, or (b) (hopefully more often) +different PropertyHelper at run time, or (b) (hopefully more often) install one or more PropertyHelper Delegates into the PropertyHelper active on the current Project. This is somewhat advanced Apache Ant usage and assumes a diff --git a/manual/Tasks/rmic.html b/manual/Tasks/rmic.html index 1ffdfbdc5..cd3247af8 100644 --- a/manual/Tasks/rmic.html +++ b/manual/Tasks/rmic.html @@ -229,8 +229,8 @@ either while running Java 11+ unless you fork the task and explicitly specify an parent directory for any source files AND the output directory.

  • destdir can be used to specify the output directory, allowing for base to be used as the parent directory for any source files.
  • -
  • At least one of either base or destdir must be specified and exist, or a - runtime error will occur.
  • +
  • At least one of either base or destdir must be specified and exist, or + an error will occur at run time.
  • Parameters specified as nested elements

    diff --git a/manual/develop.html b/manual/develop.html index 6806ced98..e2f713aae 100644 --- a/manual/develop.html +++ b/manual/develop.html @@ -96,18 +96,18 @@ one doesn't really matter to Ant, using all lower case is a good convention, tho actual addConfigured method is not called.
  • All attributes of this task get set via their corresponding setXXX() - methods, at runtime.
  • + methods, at run time.
  • The content character data sections inside the XML element corresponding to this task is added - to the task via its addText() method, at runtime.
  • + to the task via its addText() method, at run time.
  • All attributes of all child elements get set via their - corresponding setXXX() methods, at runtime.
  • + corresponding setXXX() methods, at run time.
  • If child elements of the XML element corresponding to this task have been created for addConfiguredXXX() methods, those methods get invoked now.
  • -
  • execute() is called at runtime. If target1 +
  • execute() is called at run time. If target1 and target2 both depend on target3, then running ant target1 target2 will run all tasks in target3 twice.
  • diff --git a/manual/properties.html b/manual/properties.html index d2a791c8d..3cfb82828 100644 --- a/manual/properties.html +++ b/manual/properties.html @@ -26,7 +26,7 @@

    Properties

    Properties are key-value pairs where Apache Ant tries to expand ${key} - to value at runtime.

    + to value at run time.

    There are many tasks that can set properties, the most common one is the property task. In addition properties can be defined diff --git a/manual/tasksoverview.html b/manual/tasksoverview.html index 7e69b5103..d4ef43087 100644 --- a/manual/tasksoverview.html +++ b/manual/tasksoverview.html @@ -854,7 +854,7 @@ documentation.

    Available

    Sets a property if a specified file, directory, class in the classpath, or JVM system resource is available at - runtime.

    + run time.