com.github.nalukit.nalu.client.component.AlwaysShowBlock Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of nalu Show documentation
Show all versions of nalu Show documentation
Routing based application framework for GWT 2, GWT 3 + J2CL
The newest version!
package com.github.nalukit.nalu.client.component;
/**
* Default implementation of a block controller condition
*/
public class AlwaysShowBlock
implements IsShowBlockCondition {
/**
* Method is called, in case a routing occurs.
* Depending on the return value, the block will be displayed
* or not.
*
* @param route the route
* @param params parameter (0 .. n)
* @return true: always show the block
*/
@Override
public boolean showBlock(String route,
String... params) {
return true;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy