View Javadoc
1   package com.jsql.view.terminal;
2   /*******************************************************************************
3    * Copyhacked (H) 2012-2020.
4    * This program and the accompanying materials
5    * are made available under no term at all, use it like
6    * you want, but share and discuss about it
7    * every time possible with every body.
8    * 
9    * Contributors:
10   *      ron190 at ymail dot com - initial implementation
11   ******************************************************************************/
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  }