blob: 6bbf5204e78acbb759dfb3b3911f4c792527d912 [file] [log] [blame]
/******************************************************************************
* Copyright (c) 2005-2007 BEA Systems, Inc.
* 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:
* Konstantin Komissarchik
******************************************************************************/
package org.eclipse.wst.common.project.facet.core.internal;
import java.util.Collections;
import java.util.HashSet;
import java.util.Set;
import org.eclipse.wst.common.project.facet.core.IGroup;
import org.eclipse.wst.common.project.facet.core.IProjectFacetVersion;
/**
* The implementation of the {@see IGroup} interface.
*
* @author <a href="mailto:kosta@bea.com">Konstantin Komissarchik</a>
*/
public final class Group
implements IGroup
{
private String id;
private String label;
private String description;
private final Set<IProjectFacetVersion> members;
private final Set<IProjectFacetVersion> membersReadOnly;
Group()
{
this.description = ""; //$NON-NLS-1$
this.members = new HashSet<IProjectFacetVersion>();
this.membersReadOnly = Collections.unmodifiableSet( this.members );
}
public String getId()
{
return this.id;
}
void setId( final String id )
{
this.id = id;
if( this.label == null )
{
this.label = id;
}
}
public String getLabel()
{
return this.label;
}
void setLabel( final String label )
{
this.label = label;
}
public String getDescription()
{
return this.description;
}
void setDescription( final String description )
{
this.description = description;
}
public Set<IProjectFacetVersion> getMembers()
{
return this.membersReadOnly;
}
void addMember( final IProjectFacetVersion fv )
{
this.members.add( fv );
}
public String toString()
{
return getLabel();
}
}