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

How to use
getProject
method
in
org.apache.tools.ant.types.TarFileSet

Best Java code snippets using org.apache.tools.ant.types.TarFileSet.getProject (Showing top 2 results out of 315)

origin: org.apache.ant/ant

/**
 * A check attributes for TarFileSet.
 * If there is a reference, and
 * it is a TarFileSet, the tar fileset attributes
 * cannot be used.
 */
private void checkTarFileSetAttributesAllowed() {
  if (getProject() == null
    || (isReference()
      && (getRefid().getReferencedObject(
          getProject())
        instanceof TarFileSet))) {
    checkAttributesAllowed();
  }
}
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();
}
org.apache.tools.ant.typesTarFileSetgetProject

Popular methods of TarFileSet

  • getGroup
  • getUserName
  • <init>
    Constructor using a tarfileset argument.
  • getGid
  • getUid
  • hasGroupBeenSet
  • hasGroupIdBeenSet
  • hasUserIdBeenSet
  • hasUserNameBeenSet
  • setDir
  • setExcludes
  • setFileMode
  • setExcludes,
  • setFileMode,
  • setIncludes,
  • checkAttributesAllowed,
  • checkTarFileSetAttributesAllowed,
  • clone,
  • configureFileSet,
  • dieOnCircularReference,
  • getCheckedRef,
  • getDirMode

Popular in Java

  • Creating JSON documents from java classes using gson
  • findViewById (Activity)
  • getApplicationContext (Context)
  • putExtra (Intent)
  • FileReader (java.io)
    A specialized Reader that reads from a file in the file system. All read requests made by calling me
  • PrintStream (java.io)
    Fake signature of an existing Java class.
  • URLConnection (java.net)
    A connection to a URL for reading or writing. For HTTP connections, see HttpURLConnection for docume
  • Connection (java.sql)
    A connection represents a link from a Java application to a database. All SQL statements and results
  • ArrayList (java.util)
    ArrayList is an implementation of List, backed by an array. All optional operations including adding
  • JTextField (javax.swing)
  • Best IntelliJ plugins
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