
net.sourceforge.retroweaver.translator.NoMirror Maven / Gradle / Ivy
Go to download
Retroweaver is a tool, which converts Java 5 (or 6) compliant
class files into Java 1.x compliant class files. The jar file
retroweaver.jar contains both the class processor (which may
be used at compile time) and the runtime classes. Additionally
there is the jar file retroweaver-rt.jar (which contains the
runtime classes only).
The newest version!
package net.sourceforge.retroweaver.translator;
class NoMirror implements Mirror {
protected NoMirror() {
// private constructor
}
public boolean exists() {
return false;
}
public String getTranslatedName() {
throw new UnsupportedOperationException();
}
public boolean isClassMirror() {
return false;
}
public boolean hasMethod(final String owner, final String methodName, final String methodDescriptor, final int opcode) {
return false;
}
public boolean hasStaticField(String fieldName, String fieldDescriptor) {
return false;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy