All Downloads are FREE. Search and download functionalities are using the official Maven repository.

enkan.system.repl.jshell.command.ScanPackagesCommand Maven / Gradle / Ivy

There is a newer version: 0.10.0
Show newest version
package enkan.system.repl.jshell.command;

import enkan.system.EnkanSystem;
import enkan.system.ReplResponse;
import enkan.system.SystemCommand;
import enkan.system.Transport;

public class ScanPackagesCommand implements SystemCommand {
    @Override
    public boolean execute(EnkanSystem system, Transport transport, String... args) {
        system.getAllComponents().forEach(
                c -> transport.send(ReplResponse.withOut(c.getClass().getName()))
        );
        return true;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy