Javadoc fixes.
This commit is contained in:
parent
d551d942eb
commit
7ae142de61
5 changed files with 5 additions and 8 deletions
|
|
@ -51,7 +51,7 @@ public class CpuController extends Component {
|
||||||
* Instantiates a new CPU controller.
|
* Instantiates a new CPU controller.
|
||||||
*
|
*
|
||||||
* @param componentChannel the component channel
|
* @param componentChannel the component channel
|
||||||
* @param qemuMonitor
|
* @param monitor the monitor
|
||||||
*/
|
*/
|
||||||
@SuppressWarnings("PMD.AssignmentToNonFinalStatic")
|
@SuppressWarnings("PMD.AssignmentToNonFinalStatic")
|
||||||
public CpuController(Channel componentChannel, QemuMonitor monitor) {
|
public CpuController(Channel componentChannel, QemuMonitor monitor) {
|
||||||
|
|
@ -88,7 +88,6 @@ public class CpuController extends Component {
|
||||||
* On monitor result.
|
* On monitor result.
|
||||||
*
|
*
|
||||||
* @param result the result
|
* @param result the result
|
||||||
* @param channel the channel
|
|
||||||
*/
|
*/
|
||||||
@Handler
|
@Handler
|
||||||
public void onMonitorResult(MonitorResult result) {
|
public void onMonitorResult(MonitorResult result) {
|
||||||
|
|
|
||||||
|
|
@ -85,9 +85,7 @@ public class QemuMonitor extends Component {
|
||||||
* Instantiates a new qemu monitor.
|
* Instantiates a new qemu monitor.
|
||||||
*
|
*
|
||||||
* @param componentChannel the component channel
|
* @param componentChannel the component channel
|
||||||
* @param mapper
|
* @throws IOException Signals that an I/O exception has occurred.
|
||||||
* @throws JsonProcessingException
|
|
||||||
* @throws JsonMappingException
|
|
||||||
*/
|
*/
|
||||||
@SuppressWarnings("PMD.AssignmentToNonFinalStatic")
|
@SuppressWarnings("PMD.AssignmentToNonFinalStatic")
|
||||||
public QemuMonitor(Channel componentChannel) throws IOException {
|
public QemuMonitor(Channel componentChannel) throws IOException {
|
||||||
|
|
|
||||||
|
|
@ -44,7 +44,7 @@ public class RamController extends Component {
|
||||||
* Instantiates a new CPU controller.
|
* Instantiates a new CPU controller.
|
||||||
*
|
*
|
||||||
* @param componentChannel the component channel
|
* @param componentChannel the component channel
|
||||||
* @param qemuMonitor
|
* @param monitor the monitor
|
||||||
*/
|
*/
|
||||||
@SuppressWarnings("PMD.AssignmentToNonFinalStatic")
|
@SuppressWarnings("PMD.AssignmentToNonFinalStatic")
|
||||||
public RamController(Channel componentChannel, QemuMonitor monitor) {
|
public RamController(Channel componentChannel, QemuMonitor monitor) {
|
||||||
|
|
|
||||||
|
|
@ -35,7 +35,7 @@ public class MonitorCommandCompleted extends Event<Void> {
|
||||||
* Instantiates a new monitor command.
|
* Instantiates a new monitor command.
|
||||||
*
|
*
|
||||||
* @param command the command
|
* @param command the command
|
||||||
* @param arguments the arguments
|
* @param result the result
|
||||||
*/
|
*/
|
||||||
public MonitorCommandCompleted(Command command, Object result) {
|
public MonitorCommandCompleted(Command command, Object result) {
|
||||||
super();
|
super();
|
||||||
|
|
|
||||||
|
|
@ -33,7 +33,7 @@ public class MonitorResult extends Event<Void> {
|
||||||
* Instantiates a new monitor result.
|
* Instantiates a new monitor result.
|
||||||
*
|
*
|
||||||
* @param executed the command executed
|
* @param executed the command executed
|
||||||
* @param returned the values returned
|
* @param response the response
|
||||||
*/
|
*/
|
||||||
public MonitorResult(String executed, JsonNode response) {
|
public MonitorResult(String executed, JsonNode response) {
|
||||||
this.executed = executed;
|
this.executed = executed;
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue