
spoon.support.compiler.ZipFile Maven / Gradle / Ivy
/*
* Spoon - http://spoon.gforge.inria.fr/
* Copyright (C) 2006 INRIA Futurs
*
* This software is governed by the CeCILL-C License under French law and
* abiding by the rules of distribution of free software. You can use, modify
* and/or redistribute the software under the terms of the CeCILL-C license as
* circulated by CEA, CNRS and INRIA at http://www.cecill.info.
*
* This program is distributed in the hope that it will be useful, but WITHOUT
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
* FITNESS FOR A PARTICULAR PURPOSE. See the CeCILL-C License for more details.
*
* The fact that you are presently reading this means that you have had
* knowledge of the CeCILL-C license and that you accept its terms.
*/
package spoon.support.compiler;
import java.io.ByteArrayInputStream;
import java.io.File;
import java.io.InputStream;
import spoon.compiler.SpoonFile;
import spoon.compiler.SpoonFolder;
public class ZipFile implements SpoonFile {
byte[] buffer;
String name;
ZipFolder parent;
public ZipFile(ZipFolder parent, String name, byte[] buffer) {
super();
this.buffer = buffer;
this.name = name;
this.parent = parent;
}
public InputStream getContent() {
return new ByteArrayInputStream(buffer);
}
public String getName() {
return name;
}
public SpoonFolder getParent() {
return parent;
}
@Override
public File getFileSystemParent() {
return getParent().getFileSystemParent();
}
public boolean isFile() {
return true;
}
public boolean isJava() {
return getName().endsWith(".java");
}
public String getPath() {
return toString();
}
@Override
public String toString() {
return parent + "!" + getName();
}
@Override
public boolean isArchive() {
return true;
}
@Override
public File toFile() {
return null;
}
@Override
public boolean isActualFile() {
return false;
}
@Override
public boolean equals(Object obj) {
return toString().equals(obj.toString());
}
@Override
public int hashCode() {
return toString().hashCode();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy