HomeSort by relevance Sort by last modified time
    Searched refs:refreshButton (Results 1 - 9 of 9) sorted by null

  /external/webkit/Source/WebCore/inspector/front-end/
DatabaseTableView.js 36 this.refreshButton = new WebInspector.StatusBarButton(WebInspector.UIString("Refresh"), "refresh-storage-status-bar-item");
37 this.refreshButton.addEventListener("click", this._refreshButtonClicked.bind(this), false);
49 return [this.refreshButton.element];
DOMStorageItemsView.js 39 this.refreshButton = new WebInspector.StatusBarButton(WebInspector.UIString("Refresh"), "refresh-storage-status-bar-item");
40 this.refreshButton.addEventListener("click", this._refreshButtonClicked.bind(this), false);
46 return [this.refreshButton.element, this.deleteButton.element];
ApplicationCacheItemsView.js 41 this.refreshButton = new WebInspector.StatusBarButton(WebInspector.UIString("Refresh"), "refresh-storage-status-bar-item");
42 this.refreshButton.addEventListener("click", this._refreshButtonClicked.bind(this), false);
79 this.refreshButton.element, this.deleteButton.element,
85 this.refreshButton.element, this.deleteButton.element, this.divider,
  /sdk/monkeyrunner/src/com/android/monkeyrunner/controller/
MonkeyControllerFrame.java 50 private final JButton refreshButton = new JButton("Refresh");
102 add(refreshButton);
106 refreshButton.addActionListener(new ActionListener() {
VariableFrame.java 142 JButton refreshButton = new JButton("Refresh");
143 add(refreshButton);
144 refreshButton.addActionListener(new ActionListener() {
  /sdk/monkeyrunner/src/com/android/monkeyrunner/recorder/
MonkeyRecorderFrame.java 77 private JButton refreshButton = null;
384 * This method initializes refreshButton
389 if (refreshButton == null) {
390 refreshButton = new JButton();
391 refreshButton.setText("Refresh Display");
392 refreshButton.addActionListener(new java.awt.event.ActionListener() {
399 return refreshButton;
  /development/samples/ActionBarCompat/src/com/example/android/actionbarcompat/
ActionBarHelperBase.java 111 View refreshButton = mActivity.findViewById(R.id.actionbar_compat_item_refresh);
115 if (refreshButton != null) {
116 refreshButton.setVisibility(refreshing ? View.GONE : View.VISIBLE);
  /sdk/hierarchyviewer/src/com/android/hierarchyviewer/ui/
Workspace.java 167 private JButton refreshButton;
464 refreshButton = new JButton();
465 refreshButton.setAction(actionsMap.get(RefreshWindowsAction.ACTION_NAME));
466 refreshButton.putClientProperty("JButton.buttonType", "segmentedTextured");
467 refreshButton.putClientProperty("JButton.segmentPosition", "last");
468 toolBar.add(refreshButton);
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gle2/
PaletteControl.java 502 Button refreshButton = new Button(wrapper, SWT.PUSH | SWT.FLAT);
503 refreshButton.setLayoutData(new GridData(SWT.CENTER, SWT.CENTER,
505 refreshButton.setText("Refresh");
506 refreshButton.setImage(IconFactory.getInstance().getIcon("refresh")); //$NON-NLS-1$
507 refreshButton.addSelectionListener(new SelectionAdapter() {
    [all...]

Completed in 244 milliseconds