blob: 9f5fab69eb978de9899094a766c95fb2cc110b92 [file] [log] [blame]
/**
* <copyright>
*
* Copyright (c) 2009-2010 Thales Corporate Services S.A.S.
* 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:
* Thales Corporate Services S.A.S - initial API and implementation
*
* </copyright>
*/
package org.eclipse.egf.model.pattern;
import java.util.List;
import java.util.Set;
/**
* @author Thomas Guiu
*
*/
public interface DomainVisitor {
List<?> getChildren(Object model);
void setPatterns(Set<Pattern> patterns) throws PatternException;
void visit(PatternContext context, Object model) throws PatternException;
void dispose();
}