Searched refs:actionCommand (Results 1 - 11 of 11) sorted by relevance

/openjdk7/jdk/src/share/classes/java/awt/event/
H A DActionEvent.java110 String actionCommand; field in class:ActionEvent
226 this.actionCommand = command;
246 return actionCommand;
285 return typeStr + ",cmd="+actionCommand+",when="+when+",modifiers="+
/openjdk7/jdk/src/share/classes/javax/swing/
H A DDefaultButtonModel.java54 protected String actionCommand = null; field in class:DefaultButtonModel
121 public void setActionCommand(String actionCommand) { argument
122 this.actionCommand = actionCommand;
129 return actionCommand;
H A DTimer.java187 private volatile String actionCommand; field in class:Timer
526 this.actionCommand = command;
539 return actionCommand;
642 timer.actionCommand = actionCommand;
H A DAbstractButton.java1039 * @param actionCommand the action command for this button
1041 public void setActionCommand(String actionCommand) { argument
1042 getModel().setActionCommand(actionCommand);
2008 String actionCommand = event.getActionCommand();
2009 if(actionCommand == null) {
2010 actionCommand = getActionCommand();
2014 actionCommand,
H A DJComboBox.java145 protected String actionCommand = "comboBoxChanged"; field in class:JComboBox
1015 actionCommand = aCommand;
1026 return actionCommand;
/openjdk7/jdk/src/share/classes/java/awt/
H A DButton.java104 String actionCommand; field in class:Button
234 actionCommand = command;
243 return (actionCommand == null? label : actionCommand);
H A DMenuItem.java129 * By default the <code>actionCommand</code>
137 String actionCommand; field in class:MenuItem
491 actionCommand = command;
506 return (actionCommand == null? label : actionCommand);
H A DTrayIcon.java93 private String actionCommand; field in class:TrayIcon
532 return actionCommand;
547 actionCommand = command;
/openjdk7/jdk/src/solaris/classes/sun/awt/X11/
H A DXFileDialogPeer.java605 String actionCommand = actionEvent.getActionCommand();
608 if (actionCommand.equals(actionButtonText)) {
611 } else if (actionCommand.equals(filterLabelText)) {
613 } else if (actionCommand.equals(cancelButtonText)) {
629 //handleFilter( actionCommand + getFileName( filterField.getText() ) );
630 if (updateDirectoryByUserAction(actionCommand)){
634 handleSelection( actionCommand );
/openjdk7/jdk/src/share/classes/javax/swing/plaf/basic/
H A DBasicMenuItemUI.java847 String actionCommand = menuItem.getActionCommand();
848 if ((actionCommand == "Close") ||
849 (actionCommand == "Minimize") ||
850 (actionCommand == "Restore") ||
851 (actionCommand == "Maximize")) {
/openjdk7/jdk/src/windows/native/sun/windows/
H A Dawt_TrayIcon.cpp564 jstring actionCommand = (jstring)env->GetObjectField(target, AwtTrayIcon::actionCommandID); local
566 target, id, actionCommand, when, modifiers);
581 env->DeleteLocalRef(actionCommand);
892 AwtTrayIcon::actionCommandID = env->GetFieldID(cls, "actionCommand", "Ljava/lang/String;");

Completed in 83 milliseconds