Class StaticContext


  • public class StaticContext
    extends java.lang.Object
    Stores static context information needed by a transformed PlasticClass; this includes data such as injections.
    • Constructor Summary

      Constructors 
      Constructor Description
      StaticContext()  
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      StaticContext dupe()
      Duplicates this StaticContext, which is used when creating a subclass of a transformed class.
      java.lang.Object get​(int index)  
      int store​(java.lang.Object value)
      Store a context value and return its index.
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Method Detail

      • dupe

        public StaticContext dupe()
        Duplicates this StaticContext, which is used when creating a subclass of a transformed class.
        Returns:
        new StaticContext with the same values
      • store

        public int store​(java.lang.Object value)
        Store a context value and return its index.
      • get

        public java.lang.Object get​(int index)