VelocimacroFactory.java * manages the set of VMs in a running Velocity engine. *
Example #1
0
 public RuntimeInstance()
 {
     this.logSystem             = new PrimordialLogSystem();
     this.configuration         = new ExtendedProperties();
     this.vmFactory             = new VelocimacroFactory(this);
     this.introspector          = new Introspector(this);
     this.applicationAttributes = new Hashtable();
 }
Example #2
0
        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();
        }
Example #3
0
        public RuntimeInstance()
        {
            InitBlock();

            /*
             *  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();
        }
Example #4
0
		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();
		}
Example #5
0
 private void InitBlock(VelocimacroFactory enclosingInstance)
 {
     this.enclosingInstance = enclosingInstance;
 }
Example #6
0
 public Twonk(VelocimacroFactory enclosingInstance)
 {
     InitBlock(enclosingInstance);
 }
	public RuntimeInstance() {
	    InitBlock();
	    /*
	    *  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();
	}
 private void InitBlock(VelocimacroFactory enclosingInstance)
 {
     this.enclosingInstance = enclosingInstance;
 }
 public Twonk(VelocimacroFactory enclosingInstance)
 {
     InitBlock(enclosingInstance);
 }