blob: 671d45ad4587e3e34841ff93c28c290f1bd256e6 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2010 Boeing.
* 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:
* Boeing - initial API and implementation
*******************************************************************************/
package org.eclipse.ote.ui.message.tree;
public interface INodeVisitor<T> {
T messageNode(MessageNode node);
T elementNode(ElementNode node);
T rootNode(RootNode node);
}