Home | History | Annotate | Download | only in plugin

Lines Matching defs:DmtData

30  * DmtData encapsulates various DMT node data formats.
45 public class DmtData implements Parcelable {
46 private static final String TAG = "DmtData";
109 * Used to create a DmtData((String)null)
129 private final LinkedHashMap<String, DmtData> childNodes = new LinkedHashMap<String, DmtData>();
136 public DmtData() {
139 public DmtData(String str, int dataType) {
186 childNodes.put(name, new DmtData());
201 public DmtData(String str) {
209 public DmtData(int integer) {
217 public DmtData(boolean bool) {
226 public DmtData(byte[] bin) {
231 public DmtData(float value) {
327 public void addChildNode(String name, DmtData child) throws DmtException {
348 public DmtData getChild(String name) throws DmtException {
361 public Map<String, DmtData> getChildNodeMap() throws DmtException {
371 if (!(obj instanceof DmtData)) {
374 DmtData data = (DmtData) obj;
464 for (Map.Entry<String, DmtData> entry : childNodes.entrySet()) {
480 public static final Creator<DmtData> CREATOR = new Creator<DmtData>() {
482 public DmtData createFromParcel(Parcel in) {
483 return new DmtData(in);
487 public DmtData[] newArray(int size) {
488 return new DmtData[size];
492 DmtData(Parcel in) {
537 DmtData value = new DmtData(in);