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      * (non-Javadoc)
00018      * @see edu.rice.cs.hpc.data.util.IUserData#getFilename()
00019      */
00020     public String getFilename() {
00021         
00022         IPath path = Platform.getLocation().makeAbsolute();
00023         return path.append(FILE_NAME).makeAbsolute().toString();
00024     }
00025 
00026     /*
00027      * (non-Javadoc)
00028      * @see edu.rice.cs.hpc.data.util.IUserData#initDefault()
00029      */
00030     public void initDefault() {
00031         data.put("hpcrun_special_IDLE", "... IDLE ...");
00032     }
00033 }

Generated on 5 May 2015 for HPCVIEWER by  doxygen 1.6.1