Javadoc fixes.
This commit is contained in:
parent
d551d942eb
commit
ca1e00d326
5 changed files with 5 additions and 8 deletions
|
|
@ -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) {
|
||||
|
|
|
|||
|
|
@ -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 {
|
||||
|
|
|
|||
|
|
@ -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) {
|
||||
|
|
|
|||
|
|
@ -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();
|
||||
|
|
|
|||
|
|
@ -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;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue