blob: 8a22895dca9357f05bf23ce8be87034b54f570b7 [file] [log] [blame]
/*
* Copyright (c) 2000, 2003 IBM Corp. All rights reserved.
* This file is made available under the terms of the Common Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/cpl-v10.html
*/
package org.eclipse.compare.internal;
/*
* Fix for http://dev.eclipse.org/bugs/show_bug.cgi?id=20106
*/
public interface IOpenable {
static final String OPENABLE_PROPERTY= "org.eclipse.compare.internal.Openable"; //$NON-NLS-1$
/**
* Opens the selected element
*/
void openSelected();
}