blob: e7cf0479ea4d8c5f1cb7759f118192e7e8635952 [file] [log] [blame]
/******************************************************************************
* Copyright (c) 2010 Oracle
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v2.0
* which accompanies this distribution, and is available at
* https://www.eclipse.org/legal/epl-2.0/
*
* Contributors:
* Konstantin Komissarchik - initial implementation and ongoing maintenance
******************************************************************************/
package org.eclipse.wst.common.project.facet.core;
import java.util.Set;
import org.eclipse.core.runtime.IAdaptable;
/**
* Models a grouping of project facets that are intended to be selected and
* deselected as a set. This interface is not intended to be implemented by
* clients.
*
* @noextend This interface is not intended to be extended by clients.
* @noimplement This interface is not intended to be implemented by clients.
* @author <a href="mailto:konstantin.komissarchik@oracle.com">Konstantin Komissarchik</a>
*/
public interface ICategory
extends IAdaptable
{
String getId();
String getPluginId();
String getLabel();
String getDescription();
/**
* Returns the project facets that compose this category.
*
* @return the member project facets
*/
Set<IProjectFacet> getProjectFacets();
}