AppRemappings.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 AppRemappings extends LinkedHashMap<String, String> {
00010     public String get(String from) {
00011         return super.containsKey(from) ? super.get(from) : from;
00012     }
00013 
00014     public String get(String from, String to) {
00015         return super.containsKey(from) ? super.get(from) : to;
00016     }
00017 }


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