From dbcd5b6b04c3f3de72455844991e9730900e87dd Mon Sep 17 00:00:00 2001 From: Jacobus Martinus Kruithof Date: Tue, 25 Apr 2006 07:02:50 +0000 Subject: [PATCH] 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 --- .../tools/ant/types/ArchiveFileSet.java | 31 +++++++++++++++++++ 1 file changed, 31 insertions(+) diff --git a/src/main/org/apache/tools/ant/types/ArchiveFileSet.java b/src/main/org/apache/tools/ant/types/ArchiveFileSet.java index a180f1678..dc9391932 100755 --- a/src/main/org/apache/tools/ant/types/ArchiveFileSet.java +++ b/src/main/org/apache/tools/ant/types/ArchiveFileSet.java @@ -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; + } + }