Interface GeneratedClass

All Known Implementing Classes:
LoadedGeneratedClass, ReflectGeneratedClass

public interface GeneratedClass
A meta-class that represents a generated class. (Similar to java.lang.Class).
  • Method Summary

    Modifier and Type
    Method
    Description
    int
    Return the class reload version that this class was built at.
    getMethod(String simpleName)
    Obtain a handle to the method with the given name that takes no arguments.
    Return the name of the generated class.
    Return a new object that is an instance of the represented class.
  • Method Details

    • getName

      String getName()
      Return the name of the generated class.
    • newInstance

      Object newInstance(Context context) throws StandardException
      Return a new object that is an instance of the represented class. The object will have been initialised by the no-arg constructor of the represneted class. (Similar to java.lang.Class.newInstance).
      Throws:
      StandardException - Standard Derby error policy
    • getMethod

      GeneratedMethod getMethod(String simpleName) throws StandardException
      Obtain a handle to the method with the given name that takes no arguments.
      Throws:
      StandardException - Standard Derby error policy
    • getClassLoaderVersion

      int getClassLoaderVersion()
      Return the class reload version that this class was built at.