blob: effe16c7f7ca9c34f97e800a109c9924e31d29d3 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2008 Oracle Corporation.
* 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:
* Cameron Bateman - initial API and implementation
*******************************************************************************/
package org.eclipse.jst.jsf.facelet.core.internal.registry.taglib;
import java.util.Collection;
import org.eclipse.jst.jsf.common.internal.managedobject.IManagedObject;
/**
* A descriptor for all facelet taglibs in a project.
*
* @author cbateman
*
*/
public interface IProjectTaglibDescriptor extends IManagedObject
{
/**
* @return get the tag library records
*/
public Collection<? extends IFaceletTagRecord> getTagLibraries();
/**
* @param uri
* @return get the tag library for uri
*/
public IFaceletTagRecord getTagLibrary(final String uri);
/**
* @param listener
*/
public void addListener(final Listener listener);
/**
* @param listener
*/
public void removeListener(final Listener listener);
}