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 *******************************************************************************/ 11 package org.eclipse.jdt.internal.ui.text; 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 */ 21 public 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 } 36