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.scan;
12
13 import com.jsql.view.interaction.SubscriberInteraction;
14
15 /**
16 * View in the MVC pattern, defines all the components
17 * and process actions sent by the model.<br>
18 * Main groups of components:<br>
19 * - at the top: textfields input,<br>
20 * - at the center: tree on the left, table on the right,<br>
21 * - at the bottom: information labels.
22 */
23 public class ScanListTerminal extends SubscriberInteraction {
24 public ScanListTerminal() {
25 super("com.jsql.view.scan.interaction");
26 }
27 }