xapi.ui.autoui.api.AlwaysTrue Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of xapi-core-ui-autoui Show documentation
Show all versions of xapi-core-ui-autoui Show documentation
The core API for generating user interfaces from data models.
The newest version!
package xapi.ui.autoui.api;
public final class AlwaysTrue implements UiRendererSelector {
@Override
public boolean useRenderer(UserInterface> ui, UiRenderer> renderer, String path, Object o) {
return true;
}
}