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

📄 vjpinfocomposite.java

📁 AStar算法
💻 JAVA
字号:
/******************************************************************************* * 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.");  }}

⌨️ 快捷键说明

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