|
@@ -65,6 +65,10 @@ public class PortEditorPanel extends JPanel
|
|
* Textfield for the last trigger
|
|
* Textfield for the last trigger
|
|
*/
|
|
*/
|
|
private JTextField tfLastTrigger;
|
|
private JTextField tfLastTrigger;
|
|
|
|
+ /**
|
|
|
|
+ * Textfield for the jitter
|
|
|
|
+ */
|
|
|
|
+ private JTextField tfJitter;
|
|
|
|
|
|
/**
|
|
/**
|
|
* Creates a new PortEditorPanel, which allows editing of the Ports of toEdit
|
|
* Creates a new PortEditorPanel, which allows editing of the Ports of toEdit
|
|
@@ -171,6 +175,19 @@ public class PortEditorPanel extends JPanel
|
|
tfLastTrigger.addActionListener(this);
|
|
tfLastTrigger.addActionListener(this);
|
|
tfLastTrigger.addMouseListener(this);
|
|
tfLastTrigger.addMouseListener(this);
|
|
|
|
|
|
|
|
+ JLabel lblJitter = new JLabel("Jitter:");
|
|
|
|
+ lblJitter.setHorizontalAlignment(SwingConstants.RIGHT);
|
|
|
|
+ lblJitter.setBounds(20, 180, 102, 16);
|
|
|
|
+ editPanel.add(lblJitter);
|
|
|
|
+
|
|
|
|
+ tfJitter = new JTextField();
|
|
|
|
+ tfJitter.setBounds(134, 180, 132, 22);
|
|
|
|
+ editPanel.add(tfJitter);
|
|
|
|
+ tfJitter.setColumns(10);
|
|
|
|
+ tfJitter.addFocusListener(this);
|
|
|
|
+ tfJitter.addActionListener(this);
|
|
|
|
+ tfJitter.addMouseListener(this);
|
|
|
|
+
|
|
splitPane = new JSplitPane(JSplitPane.HORIZONTAL_SPLIT,
|
|
splitPane = new JSplitPane(JSplitPane.HORIZONTAL_SPLIT,
|
|
listScrollPane, pictureScrollPane);
|
|
listScrollPane, pictureScrollPane);
|
|
splitPane.setDividerLocation(60);
|
|
splitPane.setDividerLocation(60);
|
|
@@ -211,6 +228,8 @@ public class PortEditorPanel extends JPanel
|
|
tfResponseTime.setBackground(Color.WHITE);
|
|
tfResponseTime.setBackground(Color.WHITE);
|
|
tfTriggerInterval.setText(""+port.getTriggerInterval());
|
|
tfTriggerInterval.setText(""+port.getTriggerInterval());
|
|
tfTriggerInterval.setBackground(Color.WHITE);
|
|
tfTriggerInterval.setBackground(Color.WHITE);
|
|
|
|
+ tfJitter.setText(""+port.getJitter());
|
|
|
|
+ tfJitter.setBackground(Color.WHITE);
|
|
cmbStatus.setSelectedIndex(port.getStatus());
|
|
cmbStatus.setSelectedIndex(port.getStatus());
|
|
if(port.getConnection() == null || port.getConnection().getProtocol()==null)
|
|
if(port.getConnection() == null || port.getConnection().getProtocol()==null)
|
|
lblProtocolName.setText("null");
|
|
lblProtocolName.setText("null");
|
|
@@ -255,7 +274,7 @@ public class PortEditorPanel extends JPanel
|
|
* Invalid values are highlighted RED
|
|
* Invalid values are highlighted RED
|
|
*/
|
|
*/
|
|
private void checkValueChange() {
|
|
private void checkValueChange() {
|
|
- if(list.getSelectedIndex()==-1||list.getSelectedIndex()>=toEdit.getPorts().size())return;
|
|
|
|
|
|
+ if(list.getSelectedIndex() < 0 || list.getSelectedIndex() >= toEdit.getPorts().size())return;
|
|
/**
|
|
/**
|
|
* Port, which is being edited at the moment
|
|
* Port, which is being edited at the moment
|
|
*/
|
|
*/
|
|
@@ -302,7 +321,7 @@ public class PortEditorPanel extends JPanel
|
|
}
|
|
}
|
|
|
|
|
|
//Edit last Trigger
|
|
//Edit last Trigger
|
|
- if(tfLastTrigger.getText()!=""+toChange.getTriggerInterval()){
|
|
|
|
|
|
+ if(tfLastTrigger.getText()!=""+toChange.getLastTrigger()){
|
|
try {
|
|
try {
|
|
toChange.setLastTrigger(Long.parseLong(tfLastTrigger.getText()));
|
|
toChange.setLastTrigger(Long.parseLong(tfLastTrigger.getText()));
|
|
tfLastTrigger.setBackground(Color.WHITE);
|
|
tfLastTrigger.setBackground(Color.WHITE);
|
|
@@ -313,6 +332,18 @@ public class PortEditorPanel extends JPanel
|
|
tfLastTrigger.setBackground(Color.WHITE);
|
|
tfLastTrigger.setBackground(Color.WHITE);
|
|
}
|
|
}
|
|
|
|
|
|
|
|
+ //Edit Jitter
|
|
|
|
+ if(tfJitter.getText()!=""+toChange.getJitter()){
|
|
|
|
+ try {
|
|
|
|
+ toChange.setJitter(Short.parseShort(tfJitter.getText()));
|
|
|
|
+ tfJitter.setBackground(Color.WHITE);
|
|
|
|
+ } catch (Exception e) {
|
|
|
|
+ tfJitter.setBackground(Color.RED);
|
|
|
|
+ }
|
|
|
|
+ }else{
|
|
|
|
+ tfJitter.setBackground(Color.WHITE);
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
|
|
}
|
|
}
|
|
|
|
|