ProcedureAliasMap.java
Go to the documentation of this file.00001 package edu.rice.cs.hpc.common.util;
00002
00003 import org.eclipse.core.runtime.IPath;
00004 import org.eclipse.core.runtime.Platform;
00005
00006
00012 public class ProcedureAliasMap extends AliasMap<String,String> {
00013
00014 static private final String FILE_NAME = "procedure.map";
00015
00016
00017
00018
00019
00020 public String getFilename() {
00021
00022 IPath path = Platform.getLocation().makeAbsolute();
00023 return path.append(FILE_NAME).makeAbsolute().toString();
00024 }
00025
00026
00027
00028
00029
00030 public void initDefault() {
00031 data.put("hpcrun_special_IDLE", "... IDLE ...");
00032 }
00033 }