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

📄 ibrowserconstants.java

📁 这是用eclipse的rcp写成的一个浏览器的离子
💻 JAVA
字号:
/*******************************************************************************
 * Copyright (c) 2004 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.rcp.browser;

/**
 * Interface defining constants for use in the browser example.
 */
public interface IBrowserConstants {

    /**
     * ID of the RCP Browser Example plug-in.
     */
    public static final String PLUGIN_ID = "org.eclipse.ui.examples.rcp.browser"; //$NON-NLS-1$
    
    /**
     * ID of the Browser perspective.
     */
    public static final String BROWSER_PERSPECTIVE_ID = PLUGIN_ID + ".browserPerspective"; //$NON-NLS-1$
    
    /**
     * ID of the Browser view.
     */
    public static final String BROWSER_VIEW_ID = PLUGIN_ID + ".browserView"; //$NON-NLS-1$

    /**
     * ID of the History view.
     */
    public static final String HISTORY_VIEW_ID = PLUGIN_ID + ".historyView"; //$NON-NLS-1$

    /**
     * Common prefix for command ids.
     */
    public static final String COMMAND_PREFIX = PLUGIN_ID + ".commands."; //$NON-NLS-1$
    
    /**
     * Preference key for the home page URL (property is String-valued).
     */
    public static final String PREF_HOME_PAGE = "homePage"; //$NON-NLS-1$

    /**
     * Memento attribute name for the browser URL (attribute is String-valued).
     */
    public static final String MEMENTO_URL = "url"; //$NON-NLS-1$
    
}

⌨️ 快捷键说明

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