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

pl.fhframework.IMenuPanel Maven / Gradle / Ivy

package pl.fhframework;

import pl.fhframework.core.uc.IInitialUseCase;

/**
 * Use case which represents application menu element.
 */
public interface IMenuPanel extends IInitialUseCase {

    String getContainerId();

    default void runUseCase(String fullyQualifiedUseCaseClassName) {
        getUserSession().runUseCase(fullyQualifiedUseCaseClassName);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy