Inheritance: Microsoft.Zing.StateImpl
Example #1
0
            public SimpleArray(Application app, int size) : base(app) 
            {
				 array = new _ElementType[size];
            }
Example #2
0
 public StructSet(Application app) : base(app) { }
Example #3
0
 public ComplexSet(Application app) : base(app) { }
Example #4
0
 public SimpleSet(Application app): base(app) { }
Example #5
0
 public EnumSet(Application app): base(app) { }
Example #6
0
 public abstract __InterfaceMethod __CreateInterfaceMethod(Application application);
Example #7
0
 public Class(Application application) : base(application)
 {
     // For each non-static field with an initializer:
     //     Insert assignment statement to initialize the field here
 }
Example #8
0
 public ComplexChan(Application app): base(app) { }
Example #9
0
 // the splicer assumes that this is the first method in
 // the class
 public ClassMethod(Application app)
 {
     application = app;
     nextBlock = Blocks.Enter;
     handlerBlock = Blocks.None;
     locals = new LocalVars(this);
     inputs = new InputVars(this);
     outputs = new OutputVars(this);
 }
Example #10
0
 public StructChan(Application app): base(app) { }
Example #11
0
 public EnumChan(Application app) : base(app){ }
Example #12
0
 public SimpleChan(Application app) : base(app) { }
Example #13
0
            public ComplexArray(Application app, int size) : base(app)
            {
				 array = new Z.Pointer[size];
            }
Example #14
0
 public override __InterfaceMethod __CreateInterfaceMethod(Application application)
 {
     return new __ClassMethod(application);
 }