Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Regroup kernel information in a KernelInfo class #69

Open
pith opened this issue Mar 31, 2016 · 0 comments
Open

Regroup kernel information in a KernelInfo class #69

pith opened this issue Mar 31, 2016 · 0 comments

Comments

@pith
Copy link
Member

pith commented Mar 31, 2016

Create a KernelInfo class which regroup all the info useful for debugging/logging, for instance:

public interface KernelInfo {
    Map<String, Plugin> plugins();
    UnitModule unitModule(Class<? extends Plugin> plugin);
    UnitModule overridingUnitModule(Class<? extends Plugin> plugin);
    UnitModule nonGuiceUnitModule(Class<? extends Plugin> plugin);
    UnitModule nonGuiceOverridingUnitModule(Class<? extends Plugin> plugin);
    GlobalModule globalModule();
    Set<URL> scannedURLs();
}

This class will be provided by a new method on the kernel:

public interface Kernel {
    ...
    KernelInfo getInfo();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant