public class OutputEventArguments
extends java.lang.Object
Constructor and Description |
---|
OutputEventArguments() |
Modifier and Type | Method and Description |
---|---|
boolean |
equals(java.lang.Object obj) |
java.lang.String |
getCategory()
The output category.
|
java.lang.Integer |
getColumn()
An optional source location column where the output was produced.
|
java.lang.Object |
getData()
Optional data to report.
|
OutputEventArgumentsGroup |
getGroup()
Support for keeping an output log organized by grouping related messages.
|
java.lang.Integer |
getLine()
An optional source location line where the output was produced.
|
java.lang.String |
getOutput()
The output to report.
|
Source |
getSource()
An optional source location where the output was produced.
|
java.lang.Integer |
getVariablesReference()
If an attribute 'variablesReference' exists and its value is > 0, the output contains objects which can be
retrieved by passing 'variablesReference' to the 'variables' request.
|
int |
hashCode() |
void |
setCategory(java.lang.String category)
The output category.
|
void |
setColumn(java.lang.Integer column)
An optional source location column where the output was produced.
|
void |
setData(java.lang.Object data)
Optional data to report.
|
void |
setGroup(OutputEventArgumentsGroup group)
Support for keeping an output log organized by grouping related messages.
|
void |
setLine(java.lang.Integer line)
An optional source location line where the output was produced.
|
void |
setOutput(java.lang.String output)
The output to report.
|
void |
setSource(Source source)
An optional source location where the output was produced.
|
void |
setVariablesReference(java.lang.Integer variablesReference)
If an attribute 'variablesReference' exists and its value is > 0, the output contains objects which can be
retrieved by passing 'variablesReference' to the 'variables' request.
|
java.lang.String |
toString() |
@Pure public java.lang.String getCategory()
This is an optional property.
Possible values include - but not limited to those defined in OutputEventArgumentsCategory
public void setCategory(java.lang.String category)
This is an optional property.
Possible values include - but not limited to those defined in OutputEventArgumentsCategory
@Pure public java.lang.String getOutput()
public void setOutput(java.lang.String output)
@Pure public OutputEventArgumentsGroup getGroup()
This is an optional property.
public void setGroup(OutputEventArgumentsGroup group)
This is an optional property.
@Pure public java.lang.Integer getVariablesReference()
This is an optional property.
public void setVariablesReference(java.lang.Integer variablesReference)
This is an optional property.
@Pure public Source getSource()
This is an optional property.
public void setSource(Source source)
This is an optional property.
@Pure public java.lang.Integer getLine()
This is an optional property.
public void setLine(java.lang.Integer line)
This is an optional property.
@Pure public java.lang.Integer getColumn()
This is an optional property.
public void setColumn(java.lang.Integer column)
This is an optional property.
@Pure public java.lang.Object getData()
This is an optional property.
public void setData(java.lang.Object data)
This is an optional property.
@Pure public java.lang.String toString()
toString
in class java.lang.Object
@Pure public boolean equals(java.lang.Object obj)
equals
in class java.lang.Object
@Pure public int hashCode()
hashCode
in class java.lang.Object