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

org.adoptopenjdk.jitwatch.model.EliminatedAllocation Maven / Gradle / Ivy

/*
 * Copyright (c) 2013-2015 Chris Newland.
 * Licensed under https://github.com/AdoptOpenJDK/jitwatch/blob/master/LICENSE-BSD
 * Instructions: https://github.com/AdoptOpenJDK/jitwatch/wiki
 */
package org.adoptopenjdk.jitwatch.model;

public class EliminatedAllocation
{
	private String type;
	private int bytecodeOffset;

	public String getType()
	{
		return type;
	}

	public void setType(String type)
	{
		this.type = type;
	}

	public int getBytecodeOffset()
	{
		return bytecodeOffset;
	}

	public void setBytecodeOffset(int bytecodeOffset)
	{
		this.bytecodeOffset = bytecodeOffset;
	}

	public EliminatedAllocation(String type, int bytecodeOffset)
	{
		this.type = type;
		this.bytecodeOffset = bytecodeOffset;
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy