CallSiteScopeType.java

Go to the documentation of this file.
00001 package edu.rice.cs.hpc.data.experiment.scope;
00002 
00003 /* Java 1.5 public enum CallSiteScopeType { CALL_FROM_PROCEDURE, CALL_TO_PROCEDURE }*/
00004 
00005 // Java 1.4 Compatible enumeration type
00006 public class CallSiteScopeType {
00007     public final static CallSiteScopeType CALL_FROM_PROCEDURE = new CallSiteScopeType("FROM");
00008     public final static CallSiteScopeType CALL_TO_PROCEDURE = new CallSiteScopeType("TO");
00009     public String toString() { return value; }
00010     
00011     private String value;
00012     private CallSiteScopeType(String value) { this.value = value; };
00013 }

Generated on 5 May 2015 for HPCVIEWER by  doxygen 1.6.1