?? vjpinfocomposite.java
字號(hào):
/******************************************************************************* * Copyright ? 2008 Sandro Badame. All Rights Reserved. * * This software and the accompanying materials is available under the * Eclipse Public License 1.0 (EPL), which accompanies this distribution, and is * available at http://visualjpf.sourceforge.net/epl-v10.html ******************************************************************************/package com.javapathfinder.vjp.config;import org.eclipse.swt.SWT;import org.eclipse.swt.layout.RowLayout;import org.eclipse.swt.widgets.Composite;import org.eclipse.swt.widgets.Label;/** * Displays some helpful info about how to use VJP * @author Sandro Badame * */public class VJPInfoComposite extends Composite { public VJPInfoComposite(Composite parent, int style) { super(parent, style); setLayout(new RowLayout()); createContent(this); } //TODO make this display some helpful info on how to use VJP private void createContent(Composite parent) { Label label = new Label(parent, SWT.NULL); label.setText("Choose a Configuration to edit."); }}
?? 快捷鍵說明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號(hào)
Ctrl + =
減小字號(hào)
Ctrl + -