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

  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gle2/
GraphicalEditorPart.java 225 private StyledText mErrorLabel;
354 mErrorLabel = new StyledText(mSashError, SWT.READ_ONLY | SWT.WRAP | SWT.V_SCROLL);
355 mErrorLabel.setEditable(false);
356 mErrorLabel.setBackground(d.getSystemColor(SWT.COLOR_INFO_BACKGROUND));
357 mErrorLabel.setForeground(d.getSystemColor(SWT.COLOR_INFO_FOREGROUND));
358 mErrorLabel.addMouseListener(new ErrorLabelListener());
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/ui/
MarginChooser.java 52 private Label mErrorLabel;
154 mErrorLabel = new Label(container, SWT.WRAP);
155 mErrorLabel.setLayoutData(new GridData(SWT.FILL, SWT.FILL, true, false, 2, 1));
156 mErrorLabel.setForeground(parent.getDisplay().getSystemColor(SWT.COLOR_RED));
189 mErrorLabel.setText(message);
191 mErrorLabel.setText("");
  /sdk/sdkmanager/libs/sdkuilib/src/com/android/sdkuilib/internal/repository/
SdkUpdaterChooserDialog.java 85 private Label mErrorLabel;
255 mErrorLabel = new Label(composite, SWT.NONE);
256 mErrorLabel.setLayoutData(new GridData(SWT.FILL, SWT.CENTER, true, false, 3, 1));
564 mErrorLabel.setText(error == null ? "" : error); //$NON-NLS-1$
612 boolean missing = mErrorLabel.getText() != null && mErrorLabel.getText().length() > 0;

Completed in 81 milliseconds