/* * JBoss, Home of Professional Open Source. * * See the LEGAL.txt file distributed with this work for information regarding copyright ownership and licensing. * * See the AUTHORS.txt file distributed with this work for a full listing of individual contributors. */ package org.teiid.designer.metamodels.webservice.util; import org.eclipse.emf.ecore.EObject; import org.teiid.designer.metamodels.webservice.Interface; import org.teiid.designer.metamodels.webservice.Operation; import org.teiid.designer.metamodels.webservice.Output; /** * @since 8.0 */ public class OutputFinder extends WebServiceComponentFinder { /** * @since 4.2 */ public OutputFinder() { super(); } /** * This method accumulates the {@link Output} instances. The implementation takes as many shortcuts as possible to prevent * unnecessarily visiting unrelated objects. * * @see org.teiid.designer.core.util.ModelVisitor#visit(org.eclipse.emf.ecore.EObject) */ @Override public boolean visit( final EObject object ) { // Inputs are contained by Operations, Interfaces and Resources if (object instanceof Output) { found((Output)object); return false; } if (object instanceof Operation) { // catalogs will contain tables return true; } if (object instanceof Interface) { // schemas will contain tables return true; } return false; } }