Initial commit
This commit is contained in:
@@ -0,0 +1,21 @@
|
||||
package com.ubt.jimu.blockly.command.result;
|
||||
|
||||
/* loaded from: classes.dex */
|
||||
public class JavaResultBean<T> {
|
||||
public static final String RESULT_EXCEPTION = "0011";
|
||||
public static final String RESULT_FAILED = "0022";
|
||||
public static final String RESULT_NAME = "0001";
|
||||
public static final String RESULT_SUCCESS = "0000";
|
||||
public T result;
|
||||
public String retCode;
|
||||
public String retMsg;
|
||||
|
||||
public JavaResultBean() {
|
||||
}
|
||||
|
||||
public JavaResultBean(String str, String str2, T t) {
|
||||
this.retCode = str;
|
||||
this.retMsg = str2;
|
||||
this.result = t;
|
||||
}
|
||||
}
|
@@ -0,0 +1,11 @@
|
||||
package com.ubt.jimu.blockly.command.result;
|
||||
|
||||
import com.ubt.jimu.blockly.feature.blockly.JimuAction;
|
||||
import java.util.List;
|
||||
|
||||
/* loaded from: classes.dex */
|
||||
public class JimuActionList {
|
||||
public List<JimuAction> degree;
|
||||
public List<JimuAction> distance;
|
||||
public List<JimuAction> time;
|
||||
}
|
59
sources/com/ubt/jimu/blockly/command/result/QueryResult.java
Normal file
59
sources/com/ubt/jimu/blockly/command/result/QueryResult.java
Normal file
@@ -0,0 +1,59 @@
|
||||
package com.ubt.jimu.blockly.command.result;
|
||||
|
||||
import com.ubt.jimu.blockly.feature.blockly.ColorSensor;
|
||||
import com.ubt.jimu.blockly.feature.blockly.Gyroscope;
|
||||
import com.ubt.jimu.blockly.feature.blockly.JimuSensor;
|
||||
import java.util.List;
|
||||
|
||||
/* loaded from: classes.dex */
|
||||
public class QueryResult {
|
||||
private List<ColorSensor> Color;
|
||||
private List<JimuSensor> DigitalTube;
|
||||
private List<JimuSensor> Gravity;
|
||||
private List<Gyroscope> Gyro;
|
||||
private List<JimuSensor> Infrared;
|
||||
private List<JimuSensor> Light;
|
||||
private List<JimuSensor> Phone;
|
||||
private List<JimuSensor> Touch;
|
||||
private List<JimuSensor> Ultrasonic;
|
||||
|
||||
public List<ColorSensor> getColor() {
|
||||
return this.Color;
|
||||
}
|
||||
|
||||
public List<JimuSensor> getDigitalTube() {
|
||||
return this.DigitalTube;
|
||||
}
|
||||
|
||||
public List<JimuSensor> getGravity() {
|
||||
return this.Gravity;
|
||||
}
|
||||
|
||||
public List<Gyroscope> getGyro() {
|
||||
return this.Gyro;
|
||||
}
|
||||
|
||||
public List<JimuSensor> getInfrared() {
|
||||
return this.Infrared;
|
||||
}
|
||||
|
||||
public List<JimuSensor> getLight() {
|
||||
return this.Light;
|
||||
}
|
||||
|
||||
public List<JimuSensor> getPhone() {
|
||||
return this.Phone;
|
||||
}
|
||||
|
||||
public List<JimuSensor> getTouch() {
|
||||
return this.Touch;
|
||||
}
|
||||
|
||||
public List<JimuSensor> getUltrasonic() {
|
||||
return this.Ultrasonic;
|
||||
}
|
||||
|
||||
public void setPhone(List<JimuSensor> list) {
|
||||
this.Phone = list;
|
||||
}
|
||||
}
|
@@ -0,0 +1,6 @@
|
||||
package com.ubt.jimu.blockly.command.result;
|
||||
|
||||
/* loaded from: classes.dex */
|
||||
public class SaveBean {
|
||||
public String xmlId;
|
||||
}
|
26
sources/com/ubt/jimu/blockly/command/result/XmlListBean.java
Normal file
26
sources/com/ubt/jimu/blockly/command/result/XmlListBean.java
Normal file
@@ -0,0 +1,26 @@
|
||||
package com.ubt.jimu.blockly.command.result;
|
||||
|
||||
import com.ubt.jimu.blockly.bean.BlocklyProject;
|
||||
import java.util.List;
|
||||
|
||||
/* loaded from: classes.dex */
|
||||
public class XmlListBean {
|
||||
public String blocklyVersion;
|
||||
public boolean isDefault;
|
||||
public String type;
|
||||
public String xmlContent;
|
||||
public List<BlocklyProject> xmlList;
|
||||
|
||||
public XmlListBean(List<BlocklyProject> list) {
|
||||
this.xmlList = list;
|
||||
}
|
||||
|
||||
public XmlListBean(String str) {
|
||||
this.type = "newBlockly";
|
||||
this.xmlContent = str;
|
||||
}
|
||||
|
||||
public XmlListBean() {
|
||||
this.type = "newBlockly";
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user