⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 viewerlabel.java

📁 jfa2ce 源码帮助开发人员更好的理解运用
💻 JAVA
字号:
/******************************************************************************* * Copyright (c) 2004, 2006 IBM Corporation and others. * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, and is available at * http://www.eclipse.org/legal/epl-v10.html * * Contributors: *     IBM Corporation - initial API and implementation *******************************************************************************/package org.eclipse.jface.viewers;import org.eclipse.swt.graphics.Color;import org.eclipse.swt.graphics.Font;import org.eclipse.swt.graphics.Image;/** * The ViewerLabel is the class that is passed to a viewer to handle updates of * labels. It keeps track of both original and updates text. *  * @see IViewerLabelProvider * @since 3.0 */public class ViewerLabel {	//New values for the receiver. Null if nothing has been set.	private String newText = null;	private Image newImage = null;		private boolean imageUpdated = false;	private boolean textUpdated = false;	private Color background = null;	private Color foreground = null;	private Font font = null;	//The initial values for the receiver.	private String startText;	private Image startImage;	private boolean hasPendingDecorations;	/**	 * Create a new instance of the receiver with the supplied	 * initial text and image.	 * @param initialText	 * @param initialImage	 */	public ViewerLabel(String initialText, Image initialImage) {		startText = initialText;		startImage = initialImage;	}	/**	 * Get the image for the receiver. If the new image has been set return it,	 * otherwise return the starting image.	 * 	 * @return Returns the image.	 */	public final Image getImage() {		if (imageUpdated) {			return newImage;		}		return startImage;	}	/**	 * Set the image for the receiver.	 * 	 * @param image	 *            The image to set.	 */	public final void setImage(Image image) {		imageUpdated = true;		newImage = image;	}	/**	 * Get the text for the receiver. If the new text has been set return it,	 * otherwise return the starting text.	 * 	 * @return Returns the text.	 */	public final String getText() {		if (textUpdated) {			return newText;		}		return startText;	}	/**	 * Set the text for the receiver.	 * 	 * @param text	 *            The label to set.	 */	public final void setText(String text) {		newText = text;		textUpdated = true;	}	/**	 * Return whether or not the image has been set.	 * 	 * @return boolean. <code>true</code>  if the image has been set to something new.	 * 	 * @since 3.1	 */	public boolean hasNewImage() {		//If we started with null any change is an update		if (startImage == null) {			return newImage != null;		}				if(imageUpdated) {			return !(startImage.equals(newImage));		}		return false;	}	/**	 * Return whether or not the text has been set.	 * 	 * @return boolean. <code>true</code>  if the text has been set to something new.	 */	public boolean hasNewText() {		//If we started with null any change is an update		if (startText == null) {			return newText != null;		}				if(textUpdated) {			return !(startText.equals(newText));		}				return false;	}	/**	 * Return whether or not the background color has been set.	 * 	 * @return boolean. <code>true</code> if the value has been set.	 */	public boolean hasNewBackground() {		return background != null;	}		/**	 * Return whether or not the foreground color has been set.	 * 	 * @return boolean. <code>true</code> if the value has been set.	 * 	 * @since 3.1	 */	public boolean hasNewForeground() {		return foreground != null;	}		/**	 * Return whether or not the font has been set.	 * 	 * @return boolean. <code>true</code> if the value has been set.	 * 	 * @since 3.1	 */	public boolean hasNewFont() {		return font != null;	}	/**	 * Get the background Color.	 * @return Color or <code>null</code> if no new value	 * was set.	 * 	 * @since 3.1	 */	public Color getBackground() {		return background;	}	/**	 * Set the background Color.	 * @param background Color	 * 	 * @since 3.1	 */	public void setBackground(Color background) {		this.background = background;	}	/**	 * Get the font.	 * @return Font or <code>null</code> if no new value	 * was set.	 * 	 * @since 3.1	 */	public Font getFont() {		return font;	}	/**	 * Set the font.	 * @param font Font	 * 	 * @since 3.1	 */	public void setFont(Font font) {		this.font = font;	}	/**	 * Get the foreground Color.	 * @return Color or <code>null</code> if no new value	 * was set.	 * 	 * @since 3.1	 */	public Color getForeground() {		return foreground;	}	/**	 * Set the foreground Color.	 * @param foreground	 * 	 * @since 3.1	 */	public void setForeground(Color foreground) {		this.foreground = foreground;	}	/**	 * @param b	 */	/* public */ void setHasPendingDecorations(boolean hasPendingDecorations) {		this.hasPendingDecorations = hasPendingDecorations;	}	/* public */ boolean hasPendingDecorations() {		return hasPendingDecorations;	}}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -