31 lines
712 B
Java
31 lines
712 B
Java
/*
|
|
* Decompiled with CFR 0.152.
|
|
*/
|
|
package javax.baja.file.zip;
|
|
|
|
import javax.baja.file.FilePath;
|
|
import javax.baja.naming.OrdQueryList;
|
|
|
|
public class ZipPath
|
|
extends FilePath {
|
|
protected FilePath newInstance(String string) {
|
|
return new ZipPath(this.getScheme(), string);
|
|
}
|
|
|
|
public void normalize(OrdQueryList ordQueryList, int n) {
|
|
if (ordQueryList.isSameScheme(n, n + 1)) {
|
|
FilePath filePath = (FilePath)ordQueryList.get(n + 1);
|
|
ordQueryList.merge(n, this.merge(filePath));
|
|
}
|
|
}
|
|
|
|
public ZipPath(String string, String string2) {
|
|
super(string, string2);
|
|
}
|
|
|
|
public ZipPath(String string) {
|
|
this("zip", string);
|
|
}
|
|
}
|
|
|