1 /*******************************************************************************
2 * Copyhacked (H) 2012-2025.
3 * This program and the accompanying materials
4 * are made available under no term at all, use it like
5 * you want, but share and discuss it
6 * every time possible with every body.
7 *
8 * Contributors:
9 * ron190 at ymail dot com - initial implementation
10 ******************************************************************************/
11 package com.jsql.view.interaction;
12
13 /**
14 * Action ordered by the Model and applied to the View.
15 */
16 @FunctionalInterface
17 public interface InteractionCommand {
18
19 /**
20 * Do the action ordered by the model.
21 */
22 void execute();
23 }