Package br.eti.kinoshita.tap4j.model

Examples of br.eti.kinoshita.tap4j.model.Footer


   * @param matcher REGEX Matcher.
   */
  protected void extractFooter( Matcher matcher )
  {
    String text = matcher.group ( 1 );       
    Footer footer = new Footer( text );
   
    final String commentToken = matcher.group( 2 );
   
    if ( commentToken != null )
    {
      String commentText = matcher.group( 3 );
      final Comment comment = new Comment ( commentText );
      footer.setComment( comment );
    }
   
    this.footer = footer;
  }
View Full Code Here


   * @param matcher REGEX Matcher.
   */
  protected void extractFooter( Matcher matcher )
  {
    String text = matcher.group ( 1 );       
    Footer footer = new Footer( text );
   
    final String commentToken = matcher.group( 2 );
   
    if ( commentToken != null )
    {
      String commentText = matcher.group( 3 );
      final Comment comment = new Comment ( commentText );
      footer.setComment( comment );
    }
   
    this.footer = footer;
  }
View Full Code Here

   * @param matcher REGEX Matcher.
   */
  protected void extractFooter( Matcher matcher )
  {
    String text = matcher.group ( 1 );       
    Footer footer = new Footer( text );
   
    final String commentToken = matcher.group( 2 );
   
    if ( commentToken != null )
    {
      String commentText = matcher.group( 3 );
      final Comment comment = new Comment ( commentText );
      footer.setComment( comment );
    }
   
    this.footer = footer;
  }
View Full Code Here

   * @param matcher REGEX Matcher.
   */
  private void extractFooter( Matcher matcher )
  {
    String text = matcher.group ( 1 );       
    Footer footer = new Footer( text );
   
    final String commentToken = matcher.group( 2 );
   
    if ( commentToken != null )
    {
      String commentText = matcher.group( 3 );
      final Comment comment = new Comment ( commentText );
      footer.setComment( comment );
    }
   
    this.footer = footer;
  }
View Full Code Here

   * @param matcher REGEX Matcher.
   */
  protected void extractFooter( Matcher matcher )
  {
    String text = matcher.group ( 1 );       
    Footer footer = new Footer( text );
   
    final String commentToken = matcher.group( 2 );
   
    if ( commentToken != null )
    {
      String commentText = matcher.group( 3 );
      final Comment comment = new Comment ( commentText );
      footer.setComment( comment );
    }
   
    this.footer = footer;
  }
View Full Code Here

TOP

Related Classes of br.eti.kinoshita.tap4j.model.Footer

Copyright © 2018 www.massapicom. 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.