📄 javacolorprovider.java
字号:
/*******************************************************************************
* Copyright (c) 2000, 2005 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.ui.examples.javaeditor.util;
import java.util.*;
import org.eclipse.swt.graphics.Color;
import org.eclipse.swt.graphics.RGB;
import org.eclipse.swt.widgets.Display;
/**
* Manager for colors used in the Java editor
*/
public class JavaColorProvider {
public static final RGB MULTI_LINE_COMMENT= new RGB(0, 128, 0);
public static final RGB SINGLE_LINE_COMMENT= new RGB(0, 128, 0);
public static final RGB KEYWORD= new RGB(0, 0, 255);
public static final RGB TYPE= new RGB(255, 0, 0);
public static final RGB STRING= new RGB(0, 128, 0);
public static final RGB DEFAULT= new RGB(255, 0, 255);
public static final RGB JAVADOC_KEYWORD= new RGB(0, 128, 0);
public static final RGB JAVADOC_TAG= new RGB(128, 128, 128);
public static final RGB JAVADOC_LINK= new RGB(128, 128, 128);
public static final RGB JAVADOC_DEFAULT= new RGB(0, 128, 128);
protected Map fColorTable= new HashMap(10);
/**
* Release all of the color resources held onto by the receiver.
*/
public void dispose() {
Iterator e= fColorTable.values().iterator();
while (e.hasNext())
((Color) e.next()).dispose();
}
/**
* Return the color that is stored in the color table under the given RGB
* value.
*
* @param rgb the RGB value
* @return the color stored in the color table for the given RGB value
*/
public Color getColor(RGB rgb) {
Color color= (Color) fColorTable.get(rgb);
if (color == null) {
color= new Color(Display.getCurrent(), rgb);
fColorTable.put(rgb, color);
}
return color;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -