congrats Icon
New! Announcing Tabnine Chat Beta
Learn More
Tabnine Logo
ArchiveFileSet.clone
Code IndexAdd Tabnine to your IDE (free)

How to use
clone
method
in
org.apache.tools.ant.types.ArchiveFileSet

Best Java code snippets using org.apache.tools.ant.types.ArchiveFileSet.clone (Showing top 4 results out of 315)

origin: org.apache.ant/ant

/**
 * Return a TarFileSet that has the same properties
 * as this one.
 * @return the cloned tarFileSet
 */
@Override
public Object clone() {
  if (isReference()) {
    return getRef(getProject()).clone();
  }
  return super.clone();
}
origin: org.apache.ant/ant

/**
 * Return a ZipFileSet that has the same properties
 * as this one.
 * @return the cloned zipFileSet
 */
@Override
public Object clone() {
  if (isReference()) {
    return getRef(getProject()).clone();
  }
  return super.clone();
}
origin: org.apache.ant/ant

/**
 * Return a ArchiveFileSet that has the same properties
 * as this one.
 * @return the cloned archiveFileSet
 * @since Ant 1.6
 */
@Override
public Object clone() {
  if (isReference()) {
    return getCheckedRef(ArchiveFileSet.class, getDataTypeName(),
      getProject()).clone();
  }
  return super.clone();
}
origin: org.apache.ant/ant-compress

/**
 * Return a CommonsCompressFileSet that has the same properties
 * as this one.
 * @return the cloned tarFileSet
 */
public CommonsCompressFileSet clone() {
  if (isReference()) {
    return ((CommonsCompressFileSet) getRef(getProject())).clone();
  } else {
    return (CommonsCompressFileSet) super.clone();
  }
}
org.apache.tools.ant.typesArchiveFileSetclone

Javadoc

Return a ArchiveFileSet that has the same properties as this one.

Popular methods of ArchiveFileSet

  • getDirMode
    Get the dir mode of the archive fileset
  • getDirectoryScanner
    Return the DirectoryScanner associated with this FileSet. If the ArchiveFileSet defines a source Arc
  • getFileMode
    Get the mode of the archive fileset
  • getPrefix
    Return the prefix prepended to entries in the archive file.
  • configureFileSet
    A ArchiveFileset accepts another ArchiveFileSet or a FileSet as reference FileSets are often used by
  • getFullpath
    Return the full pathname of the single entry in this fileset.
  • getSrc
    Get the archive from which entries will be extracted.
  • hasDirModeBeenSet
    Whether the user has specified the mode explicitly.
  • hasFileModeBeenSet
    Whether the user has specified the mode explicitly.
  • setProject
  • setRefid
  • setSrcResource
    Set the source Archive file for the archivefileset. Prevents both "dir" and "src" from being specifi
  • setRefid,
  • setSrcResource,
  • checkArchiveAttributesAllowed,
  • checkAttributesAllowed,
  • checkChildrenAllowed,
  • dieOnCircularReference,
  • getCheckedRef,
  • getDataTypeName,
  • getEncoding

Popular in Java

  • Parsing JSON documents to java classes using gson
  • onRequestPermissionsResult (Fragment)
  • notifyDataSetChanged (ArrayAdapter)
  • startActivity (Activity)
  • String (java.lang)
  • CountDownLatch (java.util.concurrent)
    A synchronization aid that allows one or more threads to wait until a set of operations being perfor
  • Servlet (javax.servlet)
    Defines methods that all servlets must implement. A servlet is a small Java program that runs within
  • JOptionPane (javax.swing)
  • IsNull (org.hamcrest.core)
    Is the value null?
  • Join (org.hibernate.mapping)
  • Top 12 Jupyter Notebook extensions
Tabnine Logo
  • Products

    Search for Java codeSearch for JavaScript code
  • IDE Plugins

    IntelliJ IDEAWebStormVisual StudioAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimGoLandRubyMineEmacsJupyter NotebookJupyter LabRiderDataGripAppCode
  • Company

    About UsContact UsCareers
  • Resources

    FAQBlogTabnine AcademyTerms of usePrivacy policyJava Code IndexJavascript Code Index
Get Tabnine for your IDE now