Javadoc fixes.

This commit is contained in:
Michael Lipp 2023-07-31 18:05:27 +02:00
parent d551d942eb
commit ca1e00d326
5 changed files with 5 additions and 8 deletions

View file

@ -51,7 +51,7 @@ public class CpuController extends Component {
* Instantiates a new CPU controller.
*
* @param componentChannel the component channel
* @param qemuMonitor
* @param monitor the monitor
*/
@SuppressWarnings("PMD.AssignmentToNonFinalStatic")
public CpuController(Channel componentChannel, QemuMonitor monitor) {
@ -88,7 +88,6 @@ public class CpuController extends Component {
* On monitor result.
*
* @param result the result
* @param channel the channel
*/
@Handler
public void onMonitorResult(MonitorResult result) {

View file

@ -85,9 +85,7 @@ public class QemuMonitor extends Component {
* Instantiates a new qemu monitor.
*
* @param componentChannel the component channel
* @param mapper
* @throws JsonProcessingException
* @throws JsonMappingException
* @throws IOException Signals that an I/O exception has occurred.
*/
@SuppressWarnings("PMD.AssignmentToNonFinalStatic")
public QemuMonitor(Channel componentChannel) throws IOException {

View file

@ -44,7 +44,7 @@ public class RamController extends Component {
* Instantiates a new CPU controller.
*
* @param componentChannel the component channel
* @param qemuMonitor
* @param monitor the monitor
*/
@SuppressWarnings("PMD.AssignmentToNonFinalStatic")
public RamController(Channel componentChannel, QemuMonitor monitor) {

View file

@ -35,7 +35,7 @@ public class MonitorCommandCompleted extends Event<Void> {
* Instantiates a new monitor command.
*
* @param command the command
* @param arguments the arguments
* @param result the result
*/
public MonitorCommandCompleted(Command command, Object result) {
super();

View file

@ -33,7 +33,7 @@ public class MonitorResult extends Event<Void> {
* Instantiates a new monitor result.
*
* @param executed the command executed
* @param returned the values returned
* @param response the response
*/
public MonitorResult(String executed, JsonNode response) {
this.executed = executed;