public RuntimeInstance()
        {
            // logSystem = new PrimordialLogSystem();
            configuration = new ExtendedProperties();

            // create a VM factory, resource manager
            // and introspector
            vmFactory = new VelocimacroFactory(this);

            // make a new introspector and initialize it
            introspector = new Introspector(this);

            // and a store for the application attributes
            applicationAttributes = new Hashtable();
        }
Ejemplo n.º 2
0
 private void InitBlock(VelocimacroFactory enclosingInstance)
 {
     this.enclosingInstance = enclosingInstance;
 }
Ejemplo n.º 3
0
 public Twonk(VelocimacroFactory enclosingInstance)
 {
     InitBlock(enclosingInstance);
 }