source: trunk/org.modelica.mdt.ui/src/org/modelica/mdt/ui/hover/IInformationControlExtension4.java

Last change on this file was 483, checked in by adrpo, 18 years ago

moving towards 0.7.0

  • a lot of changes
  • debugging support
  • better hovering
  • bug fixes
  • many more other stuff
File size: 1.2 KB
Line 
1/*******************************************************************************
2 * Copyright (c) 2000, 2006 IBM Corporation and others.
3 * All rights reserved. This program and the accompanying materials
4 * are made available under the terms of the Eclipse Public License v1.0
5 * which accompanies this distribution, and is available at
6 * http://www.eclipse.org/legal/epl-v10.html
7 *
8 * Contributors:
9 *     IBM Corporation - initial API and implementation
10 *******************************************************************************/
11package org.modelica.mdt.ui.hover;
12
13
14/**
15 * Extension interface for {@link org.eclipse.jface.text.IInformationControl}.
16 * Adds API which allows to set this information control's status field text.
17 *
18 * @see org.eclipse.jface.text.IInformationControl
19 * @since 3.2
20 */
21public interface IInformationControlExtension4 {
22
23    /**
24     * Sets the text of the status field.
25     * <p>
26     * The implementor can specify whether the new text affects an
27     * already visible information control.
28     * </p>
29     *
30     * @param statusFieldText the text to be used in the optional status field
31     *                         or <code>null</code> if the status field should be hidden
32     * @since 3.2
33     */
34    public void setStatusText(String statusFieldText);
35}
Note: See TracBrowser for help on using the repository browser.