42 lines
898 B
Java
42 lines
898 B
Java
package com.ubt.jimu.controller;
|
|
|
|
import java.io.Serializable;
|
|
|
|
/* loaded from: classes.dex */
|
|
public class DraggableInfo implements Serializable {
|
|
public static final int TYPE_ACTION = 1;
|
|
public static final int TYPE_HSLIDER = 4;
|
|
public static final int TYPE_ROCKER = 2;
|
|
public static final int TYPE_SLIDER = 3;
|
|
private int actionId;
|
|
private int resID;
|
|
private int type;
|
|
|
|
public DraggableInfo(int i, int i2) {
|
|
this(i, i2, -1);
|
|
}
|
|
|
|
public int getActionId() {
|
|
return this.actionId;
|
|
}
|
|
|
|
public int getResID() {
|
|
return this.resID;
|
|
}
|
|
|
|
public int getType() {
|
|
return this.type;
|
|
}
|
|
|
|
public void setActionId(int i) {
|
|
this.actionId = i;
|
|
}
|
|
|
|
public DraggableInfo(int i, int i2, int i3) {
|
|
this.actionId = -1;
|
|
this.type = i;
|
|
this.resID = i2;
|
|
this.actionId = i3;
|
|
}
|
|
}
|