temper.core.Stub Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of temper-core Show documentation
Show all versions of temper-core Show documentation
Core runtime support for Temper-built Java libraries
The newest version!
package temper.core;
/** Stub classes to represent artifacts that should be removed during compilation. */
public final class Stub {
private Stub() {}
/** The pure virutal function indicates a method that should be abstract without a body. */
public static T pureVirtual(Object ... args) {
throw new UnsupportedOperationException();
}
/** Indicates an error in translation. */
public static T cantTranslate(Object ... args) {
throw new UnsupportedOperationException();
}
/** Represents an error during type resolution. */
public static final class InvalidType {}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy