comparison src/main/java/christie/codegear/CodeGear.java @ 14:f2b30b47ef67

RemotePutTest is working
author Nozomi Teruya <e125769@ie.u-ryukyu.ac.jp>
date Thu, 11 Jan 2018 18:02:59 +0900
parents bcd4f2c19185
children 4e867538adb7
comparison
equal deleted inserted replaced
13:bcd4f2c19185 14:f2b30b47ef67
25 protected abstract void run(CodeGearManager cgm); 25 protected abstract void run(CodeGearManager cgm);
26 26
27 public void setup(CodeGearManager cgm){ 27 public void setup(CodeGearManager cgm){
28 this.cgm = cgm; 28 this.cgm = cgm;
29 this.cge = new CodeGearExecutor(this, this.cgm); 29 this.cge = new CodeGearExecutor(this, this.cgm);
30 this.localDGM = cgm.getDGM(); 30 this.localDGM = cgm.getLocalDGM();
31 odg.initODG(cgm); 31 odg.initODG(cgm);
32 32
33 for (Field field : this.getClass().getDeclaredFields()) {//AnnotationからInputDataGearをセット 33 for (Field field : this.getClass().getDeclaredFields()) {//AnnotationからInputDataGearをセット
34 if (field.isAnnotationPresent(Take.class)) { 34 if (field.isAnnotationPresent(Take.class)) {
35 Take ano = field.getAnnotation(Take.class); 35 Take ano = field.getAnnotation(Take.class);