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

com.github.czyzby.autumn.mvc.component.ui.action.DialogShowingAction Maven / Gradle / Ivy

Go to download

MVC framework based on LibGDX using Autumn for components management and LML as view templates.

There is a newer version: 1.9.1.9.6
Show newest version
package com.github.czyzby.autumn.mvc.component.ui.action;

import com.github.czyzby.autumn.mvc.component.ui.InterfaceService;
import com.github.czyzby.lml.parser.action.ActorConsumer;

/** An action that represents dialog showing. Displays chosen dialog on invocation.
 *
 * @author MJ */
public class DialogShowingAction implements ActorConsumer {
    private final InterfaceService interfaceService;
    private final Class viewDialogControllerClass;

    public DialogShowingAction(final InterfaceService interfaceService, final Class viewDialogControllerClass) {
        this.interfaceService = interfaceService;
        this.viewDialogControllerClass = viewDialogControllerClass;
    }

    @Override
    public Void consume(final Object actor) {
        interfaceService.showDialog(viewDialogControllerClass);
        return null;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy