public void actionPerformed(ActionEvent actionevent) { string s = textField.getText().Trim(); if (s.Length > 0) { ServerGUI.getMinecraftServer(mcServerGui).addCommand(s, mcServerGui); } textField.setText(""); }
public void actionPerformed(ActionEvent actionEvent) { lock (actionListeners) { for (int ix = 0; ix < actionListeners.Count; ix++) { ActionListener listener = (ActionListener)actionListeners[ix]; listener.actionPerformed(actionEvent); } } }
public virtual void actionPerformed(ActionEvent @event) { string actionCommand = @event.getActionCommand(); if (String.instancehelper_equals(actionCommand, (object) "helpButton")) return; if (String.instancehelper_equals(actionCommand, (object) "okButton")) { this.cancelled = false; ((Dialog) this).setVisible(false); } else { if (!String.instancehelper_equals(actionCommand, (object) "cancelButton")) return; this.cancelled = true; ((Dialog) this).setVisible(false); } }
public virtual void actionPerformed(ActionEvent e) { if (String.instancehelper_equals(e.getActionCommand(), (object) "monthSelectionChanged")) { JComboBox jcomboBox = (JComboBox) ((EventObject) e).getSource(); int num = this.chosenDate.get(5); this.chosenDate.set(5, 1); this.chosenDate.set(2, jcomboBox.getSelectedIndex()); int actualMaximum = this.chosenDate.getActualMaximum(5); this.chosenDate.set(5, Math.min(num, actualMaximum)); this.refreshButtons(); } else if (String.instancehelper_equals(e.getActionCommand(), (object) "yearSelectionChanged")) { if (this.refreshing) return; Integer integer = (Integer) ((JComboBox) ((EventObject) e).getSource()).getSelectedItem(); int num = this.chosenDate.get(5); this.chosenDate.set(5, 1); this.chosenDate.set(1, integer.intValue()); int actualMaximum = this.chosenDate.getActualMaximum(5); this.chosenDate.set(5, Math.min(num, actualMaximum)); this.refreshYearSelector(); this.refreshButtons(); } else if (String.instancehelper_equals(e.getActionCommand(), (object) "todayButtonClicked")) { this.setDate(new Date()); } else { if (!String.instancehelper_equals(e.getActionCommand(), (object) "dateButtonClicked")) return; int num = Integer.parseInt(((Component) ((EventObject) e).getSource()).getName()); Calendar firstVisibleDate = this.getFirstVisibleDate(); firstVisibleDate.add(5, num); this.setDate(firstVisibleDate.getTime()); } }
/// <summary> /// Notifies all listeners that have registered interest for /// notification on this event type. /// </summary> protected void fireActionPerformed(ActionEvent @e) { }
public virtual void actionPerformed(ActionEvent e) { string actionCommand = e.getActionCommand(); if (String.instancehelper_equals(actionCommand, (object) "CLOSE")) { ((Window) this).dispose(); } else { if (!String.instancehelper_equals(actionCommand, (object) "COPY")) return; this.panel.copySystemPropertiesToClipboard(); } }
/* Events */ /** * Actions for button presses. * @param e the ActionEvent */ public void actionPerformed(ActionEvent e) { String command = e.getActionCommand(); if (debug) Console.WriteLine(command); if (command == "voronoi") isVoronoi = true; else if (command == "delaunay") isVoronoi = false; else if (command == "clear") dt = new DelaunayTriangulation(initialTriangle); repaint(); }
/// <summary> /// Processes action events occurring on this menu item, /// by dispatching them to any registered /// <code>ActionListener</code> objects. /// </summary> protected void processActionEvent(ActionEvent @e) { }
public void actionPerformed(ActionEvent e) { Handler(); }
public virtual void actionPerformed(ActionEvent e) { this.this\u00240.attempExit(); }
public virtual void actionPerformed(ActionEvent e) { }
public virtual void actionPerformed(ActionEvent e) { if (String.instancehelper_equals(e.getActionCommand(), (object) "monthSelectionChanged")) { this.date = SerialDate.createInstance(this.date.getDayOfMonth(), ((JComboBox) ((EventObject) e).getSource()).getSelectedIndex() + 1, this.date.getYYYY()); this.refreshButtons(); } else if (String.instancehelper_equals(e.getActionCommand(), (object) "yearSelectionChanged")) { if (this.refreshing) return; this.date = SerialDate.createInstance(this.date.getDayOfMonth(), this.date.getMonth(), ((Integer) ((JComboBox) ((EventObject) e).getSource()).getSelectedItem()).intValue()); this.refreshYearSelector(); this.refreshButtons(); } else if (String.instancehelper_equals(e.getActionCommand(), (object) "todayButtonClicked")) { this.setDate(SerialDate.createInstance(new Date())); } else { if (!String.instancehelper_equals(e.getActionCommand(), (object) "dateButtonClicked")) return; this.setDate(SerialDate.addDays(Integer.parseInt(((Component) ((EventObject) e).getSource()).getName()), this.getFirstVisibleDate())); } }
public override void actionPerformed(ActionEvent @event) { string actionCommand = @event.getActionCommand(); if (String.instancehelper_equals(actionCommand, (object) "Polar Zoom In")) ((PolarPlot) this.getChart().getPlot()).zoom(0.5); else if (String.instancehelper_equals(actionCommand, (object) "Polar Zoom Out")) ((PolarPlot) this.getChart().getPlot()).zoom(2.0); else if (String.instancehelper_equals(actionCommand, (object) "Polar Auto Range")) ((PolarPlot) this.getChart().getPlot()).getAxis().setAutoRange(true); else base.actionPerformed(@event); }
public void actionPerformed(ActionEvent e) { if (Action != null) Action(); }
public void actionPerformed(ActionEvent actionevent) { GuiStatsComponent.update(statsComponent); }
public override void actionPerformed(ActionEvent e) { Target.Button1_Clicked(); }