Parsing Engine

danbikel.parser
Interface SubcatFactory

All Superinterfaces:
Serializable
All Known Implementing Classes:
BrokenSubcatBagFactory, SubcatBagFactory, SubcatListFactory

public interface SubcatFactory
extends Serializable

Specification for a Subcat object factory, to be used by the Subcats static factory class.

See Also:
Subcats, Settings.subcatFactoryClass

Method Summary
 Subcat get()
          Return a Subcat object created with its default constructor.
 Subcat get(SexpList list)
          Return a Subcat object created with its one-argument constructor, using the specified list.
 

Method Detail

get

Subcat get()
Return a Subcat object created with its default constructor.


get

Subcat get(SexpList list)
Return a Subcat object created with its one-argument constructor, using the specified list.

Parameters:
list - a list containing only Symbol objects; the behavior is undefined if list contains a SexpList object

Parsing Engine

Author: Dan Bikel.