Browse Source

Methods will need additional comments on deprecation, or need to be removed again. Putting back now to be better safe than sorry.

git-svn-id: https://svn.apache.org/repos/asf/ant/core/trunk@396792 13f79535-47bb-0310-9956-ffa450edef68
master
Jacobus Martinus Kruithof 19 years ago
parent
commit
dbcd5b6b04
1 changed files with 31 additions and 0 deletions
  1. +31
    -0
      src/main/org/apache/tools/ant/types/ArchiveFileSet.java

+ 31
- 0
src/main/org/apache/tools/ant/types/ArchiveFileSet.java View File

@@ -435,4 +435,35 @@ public abstract class ArchiveFileSet extends FileSet {
return null;
}
}

/**
* Return the prefix prepended to entries in the archive file.
* @deprecated since 1.7.
*/
public String getPrefix() {
return prefix;
}

/**
* Return the full pathname of the single entryZ in this fileset.
* @deprecated since 1.7.
*/
public String getFullpath() {
return fullpath;
}

/**
* @deprecated since 1.7.
*/
public int getFileMode() {
return fileMode;
}

/**
* @deprecated since 1.7.
*/
public int getDirMode() {
return dirMode;
}

}

Loading…
Cancel
Save