Building Parsers with Java

sjm.examples.regular
Class StarAssembler

java.lang.Object
  |
  +--sjm.parse.Assembler
        |
        +--sjm.examples.regular.StarAssembler

public class StarAssembler
extends Assembler

Pop a parser from the stack and push a new Repetition of it.


Constructor Summary
StarAssembler()
           
 
Method Summary
 void workOn(Assembly a)
          Pop a parser from the stack and push a new Repetition of it.
 
Methods inherited from class sjm.parse.Assembler
elementsAbove
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

StarAssembler

public StarAssembler()
Method Detail

workOn

public void workOn(Assembly a)
Pop a parser from the stack and push a new Repetition of it.
Overrides:
workOn in class Assembler
Parameters:
Assembly - the assembly whose stack to use

by Steve Metsker