public class CallGraphReportLine
extends java.lang.Object
| Modifier and Type | Field and Description |
|---|---|
private int |
callNum
Number of occurences/calls for this line.
|
private java.lang.String |
name
A description of this line.
|
private java.lang.String |
type
The AST token type (as string).
|
private java.lang.String |
vertexId
The callgraph vertex ID associated with this line.
|
| Constructor and Description |
|---|
CallGraphReportLine() |
| Modifier and Type | Method and Description |
|---|---|
int |
getCallNum()
Get the number of calls for this line.
|
java.lang.String |
getName()
Get the description of this line.
|
java.lang.String |
getType()
Get the AST token type.
|
java.lang.String |
getVertexId()
Get the callgraph vertex ID.
|
void |
setCallNum(int callNum)
Set the value for the
callNum field. |
void |
setName(java.lang.String name)
Set the name/description for this line.
|
void |
setType(java.lang.String type)
Set the
AST token type. |
void |
setVertexId(java.lang.String vertexId)
Set the callgraph vertex ID.
|
private java.lang.String type
private java.lang.String name
private int callNum
private java.lang.String vertexId
public java.lang.String getType()
token typepublic void setType(java.lang.String type)
AST token type.type - The AST token type.public java.lang.String getName()
namepublic void setName(java.lang.String name)
name - The name/description for this line.public int getCallNum()
callNumpublic void setCallNum(int callNum)
callNum field.callNum - The number of calls/references for this line.public java.lang.String getVertexId()
vertexIdpublic void setVertexId(java.lang.String vertexId)
vertexId - The vertex ID.