|
|
|
|
@ -1,6 +1,6 @@
|
|
|
|
|
package siprp.ui;
|
|
|
|
|
package leaf;
|
|
|
|
|
|
|
|
|
|
import static siprp.logic.SIPRPLogic.ACTION_STARTUP;
|
|
|
|
|
import static leaf.LeafLogic.ACTION_STARTUP;
|
|
|
|
|
|
|
|
|
|
import java.awt.Cursor;
|
|
|
|
|
import java.awt.event.ActionEvent;
|
|
|
|
|
@ -32,10 +32,9 @@ import javax.swing.event.TreeSelectionEvent;
|
|
|
|
|
import javax.swing.event.TreeSelectionListener;
|
|
|
|
|
import javax.swing.table.TableModel;
|
|
|
|
|
|
|
|
|
|
import siprp.logic.SIPRPLogic;
|
|
|
|
|
import siprp.logic.SIPRPLogic.Action;
|
|
|
|
|
import siprp.logic.SIPRPLogic.LeafLogicActionBinding;
|
|
|
|
|
import siprp.logic.SIPRPLogic.LeafUIActionBinding;
|
|
|
|
|
import leaf.LeafLogic.Action;
|
|
|
|
|
import leaf.LeafLogic.LeafLogicActionBinding;
|
|
|
|
|
import leaf.LeafLogic.LeafUIActionBinding;
|
|
|
|
|
import siprp.medicina.processo.ui.LeafInputField;
|
|
|
|
|
|
|
|
|
|
import com.evolute.utils.tables.BaseTable;
|
|
|
|
|
@ -43,7 +42,7 @@ import com.evolute.utils.tables.ColumnizedMappable;
|
|
|
|
|
import com.evolute.utils.tables.VectorTableModel;
|
|
|
|
|
import com.evolute.utils.tracker.TrackableWindow;
|
|
|
|
|
|
|
|
|
|
public class SIPRPWindow extends JFrame implements TrackableWindow, ListSelectionListener, TreeSelectionListener, ActionListener, PropertyChangeListener
|
|
|
|
|
public class LeafWindow extends JFrame implements TrackableWindow, ListSelectionListener, TreeSelectionListener, ActionListener, PropertyChangeListener
|
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
private static final long serialVersionUID = 1L;
|
|
|
|
|
@ -105,7 +104,7 @@ public class SIPRPWindow extends JFrame implements TrackableWindow, ListSelectio
|
|
|
|
|
/**
|
|
|
|
|
* This window's logic controller
|
|
|
|
|
*/
|
|
|
|
|
private final SIPRPLogic logicController;
|
|
|
|
|
private final LeafLogic logicController;
|
|
|
|
|
|
|
|
|
|
private List<JPanel> subPanels = new ArrayList<JPanel>();
|
|
|
|
|
|
|
|
|
|
@ -139,7 +138,7 @@ public class SIPRPWindow extends JFrame implements TrackableWindow, ListSelectio
|
|
|
|
|
*/
|
|
|
|
|
private Queue<String> listRunLater = new LinkedList<String>();
|
|
|
|
|
|
|
|
|
|
public SIPRPWindow(SIPRPLogic logicController) throws IllegalArgumentException, IllegalAccessException
|
|
|
|
|
public LeafWindow(LeafLogic logicController) throws IllegalArgumentException, IllegalAccessException
|
|
|
|
|
{
|
|
|
|
|
super();
|
|
|
|
|
this.logicController = logicController;
|