Examples of FileSetType


Examples of com.caucho.config.types.FileSetType

   * Add a pattern.
   */
  public FileSetType createFileset()
  {
    if (_fileSet == null) {
      _fileSet = new FileSetType();
      _fileSet.setDir(Vfs.lookup());
    }

    return _fileSet;
  }
View Full Code Here

Examples of com.caucho.config.types.FileSetType

    try {
      if (_fileSet != null) {
      }
      else if (_path.getPath().endsWith(".jar")
         || _path.getPath().endsWith(".zip")) {
  _fileSet = new FileSetType();
  _fileSet.setDir(_path.getParent());
  _fileSet.addInclude(new PathPatternType(_path.getTail()));
      }
      else {
  _fileSet = new FileSetType();
  _fileSet.setDir(_path);
  _fileSet.addInclude(new PathPatternType("*.jar"));
  _fileSet.addInclude(new PathPatternType("*.zip"));
      }

View Full Code Here

Examples of com.caucho.config.types.FileSetType

    try {
      if (_fileSet != null) {
      }
      else if (_path.getPath().endsWith(".jar")
               || _path.getPath().endsWith(".zip")) {
        _fileSet = new FileSetType();
        _fileSet.setDir(_path.getParent());
        _fileSet.addInclude(new PathPatternType(_path.getTail()));
      }
      else {
        _fileSet = new FileSetType();
        _fileSet.setDir(_path);
        _fileSet.addInclude(new PathPatternType("*.jar"));
        _fileSet.addInclude(new PathPatternType("*.zip"));
      }

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.