AppParameters.java
Go to the documentation of this file.
00001 package com.github.rosjava.android_remocons.common_tools.apps;
00002 
00003 import java.util.LinkedHashMap;
00004 
00009 public class AppParameters extends LinkedHashMap<String, Object>  {
00010     public AppParameters() { super(); } // Required by snake yaml
00011 
00012     public Object get(String key, Object def) {
00013         return super.containsKey(key) ? super.get(key) : def;
00014     }
00015 }


android_remocons
Author(s): Daniel Stonier, Kazuto Murase
autogenerated on Sat Jun 8 2019 19:32:24