Examples of JarEntryData


Examples of org.springframework.boot.loader.jar.JarEntryData

  public Collection<Entry> getEntries() {
    return Collections.unmodifiableCollection(this.entries);
  }

  protected Archive getNestedArchive(Entry entry) throws IOException {
    JarEntryData data = ((JarFileEntry) entry).getJarEntryData();
    if (data.getComment().startsWith(UNPACK_MARKER)) {
      return getUnpackedNestedArchive(data);
    }
    JarFile jarFile = this.jarFile.getNestedJarFile(data);
    return new JarFileArchive(jarFile);
  }
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.