Archive.java
1004 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
/*
* Decompiled with CFR 0_118.
*/
package com.day.jcr.vault.fs.io;
import com.day.jcr.vault.fs.api.VaultInputSource;
import com.day.jcr.vault.fs.config.MetaInf;
import java.io.IOException;
import java.io.InputStream;
import java.util.Collection;
public interface Archive {
public void open(boolean var1) throws IOException;
public InputStream openInputStream(Entry var1) throws IOException;
public VaultInputSource getInputSource(Entry var1) throws IOException;
public Entry getJcrRoot() throws IOException;
public Entry getRoot() throws IOException;
public MetaInf getMetaInf();
public Entry getEntry(String var1) throws IOException;
public Archive getSubArchive(String var1, boolean var2) throws IOException;
public void close();
public static interface Entry {
public String getName();
public boolean isDirectory();
public Collection<? extends Entry> getChildren();
public Entry getChild(String var1);
}
}