All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.vmlens.trace.agent.bootstrap.FieldId2WaitpointIdMap Maven / Gradle / Ivy

There is a newer version: 1.1.5
Show newest version
package com.vmlens.trace.agent.bootstrap;

import gnu.trove.map.hash.TIntIntHashMap;

public class FieldId2WaitpointIdMap {

	
	private static TIntIntHashMap map = new TIntIntHashMap();
	
	
	public static synchronized void setWaitointId( int fieldId , int waipointId )
	{
		map.put(fieldId, waipointId);
		
	}
	
	public  static synchronized int getWaitointId(int fieldId)
	{
		
		if(map.contains(fieldId))
		{
			return map.get(fieldId);
		}
		else
		{
			return -1;
		}
		
		
	}
	
	
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy