blob: c72515c1a6afa203c67e0b8786c863518413555f [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2007, 2008 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:
* Takashi ITOH - initial API and implementation
*******************************************************************************/
package org.eclipse.actf.visualization.gui.msaa.properties;
import org.eclipse.swt.widgets.Shell;
import org.eclipse.ui.views.properties.IPropertyDescriptor;
public interface IPropertyInvoke {
public IPropertyDescriptor[] getPropertyDescriptorsExtra();
public boolean invoke(Object id, Shell shell);
public boolean canInvoke(Object id);
}