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); }
public static HandTakeCard getInstance() { if (instance == null) { instance = new HandTakeCard(); } return(instance); }
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); }
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); }