Home | History | Annotate | Download | only in extractstring

Lines Matching refs:Map

31 import java.util.Map;
46 * Map type: map [String filename] => map [String id => String value].
48 private HashMap<String, Map<String, String>> mResIdCache =
49 new HashMap<String, Map<String, String>>();
67 Map<String, String> cache = getResIdsForFile(project, xmlFileWsPath);
79 * @return The map of string IDs => values defined in the given file. Cached. Never null.
81 public Map<String, String> getResIdsForFile(IProject project, String xmlFileWsPath) {
82 Map<String, String> cache = mResIdCache.get(xmlFileWsPath);
94 * @return The map of all string IDs => values defined in the file.
97 private Map<String, String> internalGetResIdsForFile(IProject project, String xmlFileWsPath) {