Package er.chronic.handlers

Source Code of er.chronic.handlers.ORGRHandler

package er.chronic.handlers;

import java.util.List;

import er.chronic.Options;
import er.chronic.utils.Span;
import er.chronic.utils.Token;

public class ORGRHandler extends ORRHandler {

  public Span handle(List<Token> tokens, Options options) {
    Span outerSpan = Handler.getAnchor(tokens.subList(2, 4), options);
    return handle(tokens.subList(0, 2), outerSpan, options);
  }

}
TOP

Related Classes of er.chronic.handlers.ORGRHandler

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.