edu.mit.jmwe.index
Interface IMWEDescSet

All Superinterfaces:
Collection<IMWEDesc>, Iterable<IMWEDesc>, Set<IMWEDesc>
All Known Implementing Classes:
MWEDescSet

public interface IMWEDescSet
extends Set<IMWEDesc>

A set of MWE description objects that provides methods to retrieve the root and inflected MWE descriptions it contains.

Since:
jMWE 1.0.0
Version:
$Id: IMWEDescSet.java 616 2011-05-07 01:00:47Z markaf $
Author:
M.A. Finlayson

Method Summary
 Set<IInfMWEDesc> getInflectedMWEDescs()
          Returns the set of inflected MWE desc objects contained herein.
 Set<IRootMWEDesc> getRootMWEDescs()
          Returns the set of root MWE desc objects contained herein.
 void makeUnmodifiable()
          Makes this set unmodifiable.
 
Methods inherited from interface java.util.Set
add, addAll, clear, contains, containsAll, equals, hashCode, isEmpty, iterator, remove, removeAll, retainAll, size, toArray, toArray
 

Method Detail

makeUnmodifiable

void makeUnmodifiable()
Makes this set unmodifiable. After this method has been called, attempted changes to the set will cause an UnsupportedOperationException.

Since:
jMWE 1.0.0

getRootMWEDescs

Set<IRootMWEDesc> getRootMWEDescs()
Returns the set of root MWE desc objects contained herein.

Returns:
the set of root MWE desc objects contained herein
Since:
jMWE 1.0.0

getInflectedMWEDescs

Set<IInfMWEDesc> getInflectedMWEDescs()
Returns the set of inflected MWE desc objects contained herein.

Returns:
the set of inflected MWE desc objects contained herein
Since:
jMWE 1.0.0


Copyright © 2011 Massachusetts Institute of Technology. All Rights Reserved.