示例#1
0
        public static HandTakeCard create(MachineHandDevice nodetem, double ttime, int zz, int zzl, int zzc, int zzb = 0)
        {
            HandTakeCard acttem = HandTakeCard.create(ttime, zz, zzl, zzc, zzb);

            acttem.node = nodetem;
            return(acttem);
        }
示例#2
0
 public static HandTakeCard getInstance()
 {
     if (instance == null)
     {
         instance = new HandTakeCard();
     }
     return(instance);
 }
示例#3
0
        public static HandTakeCard create(double ttime, int zz, int zzl, int zzc, int zzb = 0)
        {
            HandTakeCard acttem = new HandTakeCard();

            acttem.z    = zz;
            acttem.zl   = zzl;
            acttem.zc   = zzc;
            acttem.zb   = zzb;
            acttem.time = ttime;
            return(acttem);
        }
示例#4
0
        public static HandTakeCard create(MachineHandDevice nodetem, double ttime, int zz, int zzl, int zzc, int zzb = 0)
        {
            HandTakeCard acttem = new HandTakeCard();

            acttem.z    = zz;
            acttem.zl   = zzl;
            acttem.zc   = zzc;
            acttem.zb   = zzb;
            acttem.time = ttime;
            acttem.node = nodetem;
            return(acttem);
        }