/******************************************************************************* * Copyright (c) 2006-2012 * Software Technology Group, Dresden University of Technology * DevBoost GmbH, Berlin, Amtsgericht Charlottenburg, HRB 140026 * * 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: * Software Technology Group - TU Dresden, Germany; * DevBoost GmbH - Berlin, Germany * - initial API and implementation ******************************************************************************/ package org.reuseware.sokan.test.indexer.list; import org.eclipse.emf.common.util.URI; import org.eclipse.emf.ecore.resource.ResourceSet; import org.reuseware.sokan.ID; import org.reuseware.sokan.IndexMetaData; import org.reuseware.sokan.index.DependencyMap; import org.reuseware.sokan.index.indexer.Indexer; import org.reuseware.sokan.test.indexer.tests.IndexerSorterTestCase; /** * This <code>Indexer</code> is used by {@link IndexerSorterTestCase} in an indexer * dependency graph. It therefore doesn't provide any meta data or artifact * dependencies. * * @author Matthias Schmidt * */ public class A5Indexer implements Indexer { /** * Returns null.<br> * See {@link A5Indexer} for more information. */ public void createIndex(URI artifactURI, IndexMetaData part, ResourceSet resourceSet) { // no index maintained } /** * See {@link A5Indexer} for more information. */ public void getDependent(ID artifactID, DependencyMap depMap) { // no artifact dependencies maintained } }