Class StatementBoundaryBase

  • All Implemented Interfaces:
    StatementBoundary

    public abstract class StatementBoundaryBase
    extends java.lang.Object
    implements StatementBoundary
    StatementBoundaryBase - a base class for StatementBoundarys, with built-in conversation to triples and a continueWith as well as a stopAt.
    • Constructor Detail

      • StatementBoundaryBase

        public StatementBoundaryBase()
    • Method Detail

      • stopAt

        public boolean stopAt​(Statement s)
        Method to over-ride to define what stops the boundary search; default definition is !continueWith(s). exactly one of these two methods must be defined.
        Specified by:
        stopAt in interface StatementBoundary
      • continueWith

        public boolean continueWith​(Statement s)
        Method to over-ride to define what continues the boundary search; default definition is !stopAt(s). exactly one of these two methods must be defined.