/******************************************************************************* * Copyright © 2011, 2013 IBM Corporation and others. * 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 API and implementation * *******************************************************************************/ package org.eclipse.edt.compiler.generationServer.parts; public class DefaultElementInfoVisitor implements IElementInfoVisitor { public void endVisit(IPartInfo info) { } public void endVisit(IEmbeddedMemberInfo info) { } public void endVisit(IUnresolvedPartInfo info) { } public boolean visit(IPartInfo info) { return false; } public boolean visit(IEmbeddedMemberInfo info) { return false; } public boolean visit(IUnresolvedPartInfo info) { return false; } public void endVisit(IExternalMemberInfo info) { } public boolean visit(IExternalMemberInfo info) { return false; } }