Example #1
0
        public override void write(Object obj1, BOutput bout1, long version)
        {
            HebrewZ    obj  = (HebrewZ)obj1;
            BOutputBin bout = (BOutputBin)bout1;
            BBufferBin bbuf = bout.bbuf;

            // checkpoint byps.gen.cs.PrintContext:494
            bbuf.putString(obj.Core);
        }
Example #2
0
        public override Object read(Object obj1, BInput bin1, long version)
        {
            BInputBin bin = (BInputBin)bin1;
            HebrewZ   obj = (HebrewZ)(obj1 != null ? obj1 : bin.onObjectCreated(new HebrewZ()));

            BBufferBin bbuf = bin.bbuf;

            // checkpoint byps.gen.cs.PrintContext:449
            obj.Core = bbuf.getString();

            return(obj);
        }
Example #3
0
		public AllTypesZ(bool @bool1, byte @byte1, char @char1, short @short1, int @int1, long @long1, float @float1, double @double1, String @string1, HebrewZ @hebrew1, byte[] @byte2, int[] @int2, String[] @string2, HebrewZ[] @hebrew2) {
			this.bool1Value = @bool1;
			this.byte1Value = @byte1;
			this.char1Value = @char1;
			this.short1Value = @short1;
			this.int1Value = @int1;
			this.long1Value = @long1;
			this.float1Value = @float1;
			this.double1Value = @double1;
			this.string1Value = @string1;
			this.hebrew1Value = @hebrew1;
			this.byte2Value = @byte2;
			this.int2Value = @int2;
			this.string2Value = @string2;
			this.hebrew2Value = @hebrew2;
		}		
Example #4
0
 public HebrewZ(HebrewZ rhs)
 {
     this.coreValue = rhs.coreValue;
 }
Example #5
0
 public AllTypesZ(bool @bool1, byte @byte1, char @char1, short @short1, int @int1, long @long1, float @float1, double @double1, String @string1, HebrewZ @hebrew1, byte[] @byte2, int[] @int2, String[] @string2, HebrewZ[] @hebrew2)
 {
     this.bool1Value   = @bool1;
     this.byte1Value   = @byte1;
     this.char1Value   = @char1;
     this.short1Value  = @short1;
     this.int1Value    = @int1;
     this.long1Value   = @long1;
     this.float1Value  = @float1;
     this.double1Value = @double1;
     this.string1Value = @string1;
     this.hebrew1Value = @hebrew1;
     this.byte2Value   = @byte2;
     this.int2Value    = @int2;
     this.string2Value = @string2;
     this.hebrew2Value = @hebrew2;
 }
Example #6
0
		public HebrewZ(HebrewZ rhs)
		{
			this.coreValue = rhs.coreValue;
		}