Examples of FileSet


Examples of org.codehaus.plexus.archiver.FileSet

                         final String[] excludes, final int permissions )
        {
            this.resource = resource;
            if ( resource instanceof FileSet )
            {
                final FileSet fs = (FileSet) resource;
                directory = fs.getDirectory();
                this.destination = fs.getPrefix();
                this.includes = fs.getIncludes();
                this.excludes = fs.getExcludes();
                this.permissions = permissions;
            }
            else
            {
                if ( resource instanceof File && ( (File) resource ).isDirectory() )
View Full Code Here

Examples of org.xmlvm.util.FileSet

  }

  protected void init()
  {
    result= new ArrayList<File>();
    FileSet fileSet= new FileSet(file.getAbsolutePath());
    for (File file : fileSet)
    {
      // Only return actual files that match this directory request. Files
      // in sub-directories are covered if they are matched the input
      // statement.
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.