org.adoptopenjdk.jitwatch.model.NumberedLine Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jitwatch-jarscan-maven-plugin Show documentation
Show all versions of jitwatch-jarscan-maven-plugin Show documentation
A Maven plugin that scans the project artifact and its dependencies for methods that cannot be inlined by the JIT
compiler. It uses the JarScan utility from the JITWatch project to do that.
See https://github.com/AdoptOpenJDK/jitwatch .
/*
* Copyright (c) 2013, 2014 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 NumberedLine
{
private long lineNumber;
private String line;
public long getLineNumber()
{
return lineNumber;
}
public void setLineNumber(long lineNumber)
{
this.lineNumber = lineNumber;
}
public String getLine()
{
return line;
}
public void setLine(String line)
{
this.line = line;
}
public NumberedLine(long lineNumber, String line)
{
this.lineNumber = lineNumber;
this.line = line;
}
}