View Javadoc
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.terminal;
12  
13  import com.jsql.view.interaction.SubscriberInteraction;
14  
15  /**
16   * View in the MVC pattern for integration test, process actions sent by the model.<br>
17   */
18  public class SystemOutTerminal extends SubscriberInteraction {
19      public SystemOutTerminal() {
20          super("com.jsql.view.terminal.interaction");
21      }
22  }