blob: 84e3b6f065502882f3b810667cf9f3fc334bcecd [file] [log] [blame]
/**********************************************************************
* Copyright (c) 2002, 2005 IBM Corporation and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Common Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/cpl-v10.html
 *
* Contributors:
* IBM - Initial API and implementation
**********************************************************************/
package org.eclipse.wtp.releng.tools.component;
import java.util.Map;
public interface ILibrary
{
public static final String EXT_CLASS = "class";
/**
* Answers a mapping of (qualified) type names to <code>Type</code> objects
* which are found in this library.
*
* @return Map a mapping of type names to <code>Type</code> objects.
*/
public Map getTypes();
public void resetTypes();
public void accept(IClazzVisitor visitor);
}