blob: 610906f8b89126c2a1b558167818eb0c1336e95f [file] [log] [blame]
/******************************************************************************
* Copyright (c) 2006 IBM Corporation.
* 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 Implementation
*
*****************************************************************************/
package org.eclipse.ptp.utils.core.extensionpoints;
import org.eclipse.core.runtime.IConfigurationElement;
import org.eclipse.core.runtime.IExtension;
/**
*
* @author Ricardo M. Matinata
* @since 1.1
*/
public interface IProcessMemberVisitor {
public Object process(IExtension extension, IConfigurationElement member);
}