ipropertymenumanager.java

来自「对eclipse gef进行封装,可以生成图形化编辑器」· Java 代码 · 共 42 行

JAVA
42
字号
/*******************************************************************************
 * $Header: /cvsroot/EOS6/work_dir/niegy/com.primeton.studio.gef.ui/src/com/primeton/studio/gef/ui/properties/IPropertyMenuManager.java,v 1.1 2006/11/17 03:15:13 niegy Exp $
 * $Revision: 1.1 $
 * $Date: 2006/11/17 03:15:13 $
 *
 *==============================================================================
 *
 * Copyright (c) 2001-2006 Primeton Technologies, Ltd.
 * All rights reserved. 
 * 
 * Created on 2006-10-26
 *******************************************************************************/


package com.primeton.studio.gef.ui.properties;

import org.eclipse.jface.action.IMenuManager;
import org.eclipse.jface.action.IToolBarManager;
import org.eclipse.jface.viewers.ISelection;

/**
 * TODO此处填写 class 信息
 *
 * @author niegy (mailto:niegy@primeton.com)
 */
/*
 * 修改历史
 * $Log: IPropertyMenuManager.java,v $
 * Revision 1.1  2006/11/17 03:15:13  niegy
 * create
 * 
 */
public interface IPropertyMenuManager {
    public abstract void makeActions(PropertySheetViewerEx propertysheetviewer);

    public abstract void configPopMenu(IMenuManager imenumanager);

    public abstract void handleEntrySelection(IMenuManager imenumanager, IToolBarManager itoolbarmanager, PropertySheetViewerEx propertysheetviewer, ISelection iselection);

    public abstract void makeContributions(IMenuManager imenumanager, IToolBarManager itoolbarmanager);
}

⌨️ 快捷键说明

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