1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-04-29 19:45:01 +02:00

Fixed typos.

This commit is contained in:
Sergey Prigogin 2011-04-22 22:47:03 +00:00
parent 33c6076178
commit 9d47423571
2 changed files with 8 additions and 9 deletions

View file

@ -16,7 +16,7 @@ import org.eclipse.core.runtime.IStatus;
public interface IStatusChangeListener { public interface IStatusChangeListener {
/** /**
* Called to annonce that the given status has changed * Called to announce that the given status has changed.
*/ */
void statusChanged(IStatus status); void statusChanged(IStatus status);
} }

View file

@ -20,12 +20,11 @@ import org.eclipse.swt.graphics.RGB;
import org.eclipse.swt.widgets.Composite; import org.eclipse.swt.widgets.Composite;
/** /**
* A message line. It distinguishs between "normal" messages and errors. * A message line. It distinguishes between "normal" messages and errors.
* Setting an error message hides a currently displayed message until * Setting an error message hides a currently displayed message until
* <code>clearErrorMessage</code> is called. * <code>clearErrorMessage</code> is called.
*/ */
public class MessageLine extends CLabel { public class MessageLine extends CLabel {
private String fMessageText; private String fMessageText;
private String fErrorText; private String fErrorText;
@ -36,7 +35,7 @@ public class MessageLine extends CLabel {
private static RGB fgErrorRGB= new RGB(200, 0, 0); private static RGB fgErrorRGB= new RGB(200, 0, 0);
/** /**
* Clears the currently displayed error message and redisplayes * Clears the currently displayed error message and redisplays
* the message which was active before the error message was set. * the message which was active before the error message was set.
*/ */
public void clearErrorMessage() { public void clearErrorMessage() {
@ -63,8 +62,8 @@ public class MessageLine extends CLabel {
return fMessageText; return fMessageText;
} }
/** /**
* Creates a new message line as a child of the parent and with the given SWT stylebits. * Creates a new message line as a child of the parent and with the given SWT style bits.
* Error message will be shown with in the given rgb color. * Error message will be shown with in the given RGB color.
*/ */
public MessageLine(Composite parent, int style, RGB errorRGB) { public MessageLine(Composite parent, int style, RGB errorRGB) {
super(parent, style); super(parent, style);
@ -72,8 +71,8 @@ public class MessageLine extends CLabel {
fErrorRGB= errorRGB; fErrorRGB= errorRGB;
} }
/** /**
* Creates a new message line as a child of the parent and with the given SWT stylebits. * Creates a new message line as a child of the parent and with the given SWT style bits.
* Error message will be shown with in the rgb color 200,0,0. * Error message will be shown with in the RGB color 200,0,0.
*/ */
public MessageLine(Composite parent, int style) { public MessageLine(Composite parent, int style) {
super(parent, style); super(parent, style);
@ -82,7 +81,7 @@ public class MessageLine extends CLabel {
} }
/** /**
* Creates a new message line as a child of the given parent. * Creates a new message line as a child of the given parent.
* Error message will be shown with in the rgb color 200,0,0. * Error message will be shown with in the RGB color 200,0,0.
*/ */
public MessageLine(Composite parent) { public MessageLine(Composite parent) {
this(parent, SWT.LEFT); this(parent, SWT.LEFT);