Browse Source

Add 1.7 tags to dispatch methods.

git-svn-id: https://svn.apache.org/repos/asf/ant/core/trunk@277579 13f79535-47bb-0310-9956-ffa450edef68
master
Matthew Jason Benson 20 years ago
parent
commit
1ad988059e
1 changed files with 4 additions and 0 deletions
  1. +4
    -0
      src/main/org/apache/tools/ant/taskdefs/optional/unix/Symlink.java

+ 4
- 0
src/main/org/apache/tools/ant/taskdefs/optional/unix/Symlink.java View File

@@ -153,6 +153,7 @@ public class Symlink extends DispatchTask {
/**
* Create a symlink.
* @throws BuildException on error.
* @since Ant 1.7
*/
public void single() throws BuildException {
try {
@@ -173,6 +174,7 @@ public class Symlink extends DispatchTask {
/**
* Delete a symlink.
* @throws BuildException on error.
* @since Ant 1.7
*/
public void delete() throws BuildException {
try {
@@ -194,6 +196,7 @@ public class Symlink extends DispatchTask {
/**
* Restore symlinks.
* @throws BuildException on error.
* @since Ant 1.7
*/
public void recreate() throws BuildException {
try {
@@ -229,6 +232,7 @@ public class Symlink extends DispatchTask {
/**
* Record symlinks.
* @throws BuildException on error.
* @since Ant 1.7
*/
public void record() throws BuildException {
try {


Loading…
Cancel
Save