org.eclipse.jface.action.StatusLineManager Java Examples

The following examples show how to use org.eclipse.jface.action.StatusLineManager. You can vote up the ones you like or vote down the ones you don't like, and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example #1
Source File: EditorTextDesign.java    From ldparteditor with MIT License 4 votes vote down vote up
/**
 * Create the status line manager.
 *
 * @return the status line manager
 */
@Override
protected StatusLineManager createStatusLineManager() {
    StatusLineManager status = new StatusLineManager();
    return status;
}
 
Example #2
Source File: StatusBar.java    From MergeProcessor with Apache License 2.0 3 votes vote down vote up
/**
 * Creates an instance of {@link IStatusLineManager} and sets it into the
 * context.
 * 
 * @param context   the eclipse context where so set the
 *                  {@link IStatusLineManager}
 * @param composite the parent composite
 */
@PostConstruct
public void createControl(final IEclipseContext context, @Optional final Composite composite) {
	final StatusLineManager statusLine = new StatusLineManager();
	statusLine.createControl(composite);
	context.set(IStatusLineManager.class, statusLine);
}