Examples of Footer


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

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

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

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

   * @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

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

Examples of de.agilecoders.wicket.samples.components.site.Footer

        add(new MetaTag("description", Model.of("description"), Model.of("Apache Wicket & Bootstrap Demo")));
        add(new MetaTag("author", Model.of("author"), Model.of("Michael Haitz <michael.haitz@agile-coders.de>")));

        add(newNavbar("navbar"));
        add(newNavigation("navigation"));
        add(new Footer("footer"));

        add(new Code("code-internal"));

        add(new HeaderResponseContainer("footer-container", "footer-container"));
View Full Code Here

Examples of org.apache.poi.ss.usermodel.Footer

        Workbook wb = new XSSFWorkbook(); //or new HSSFWorkbook();
        Sheet sheet = wb.createSheet("first-header - format sheet");
        sheet.createRow(0).createCell(0).setCellValue(123);

        //set page numbers in the footer
        Footer footer = sheet.getFooter();
        //&P == current page number
        //&N == page numbers
        footer.setRight("Page &P of &N");

       
        Header firstHeader=((XSSFSheet)sheet).getFirstHeader();
        //&F == workbook file name
        firstHeader.setLeft("&F ......... first header");
       
        for(int i=0;i<100;i=i+10){
            sheet.createRow(i).createCell(0).setCellValue(123);
        }
       
       
        XSSFSheet sheet2 = (XSSFSheet)wb.createSheet("odd header-even footer");
        Header oddHeader=sheet2.getOddHeader();
        //&B == bold
        //&E == double underline
        //&D == date
        oddHeader.setCenter("&B &E oddHeader     &D ");
       
        Footer evenFooter=sheet2.getEvenFooter();
        evenFooter.setRight("even footer &P");
        sheet2.createRow(10).createCell(0).setCellValue("Second sheet with an oddHeader and an evenFooter");

        for(int i=0;i<200;i=i+10){
            sheet2.createRow(i).createCell(0).setCellValue(123);
        }
       
        XSSFSheet sheet3 = (XSSFSheet)wb.createSheet("odd header- odd footer");
        sheet3.createRow(10).createCell(0).setCellValue("Third sheet with oddHeader and oddFooter");
        Header oddH=sheet3.getOddHeader();
        //&C == centered
        oddH.setCenter("centered oddHeader");
        oddH.setLeft("left ");
        oddH.setRight("right ");
       
        Footer oddF=sheet3.getOddFooter();
        oddF.setLeft("Page &P");
        oddF.setRight("Pages &N ");
       
        FileOutputStream fileOut = new FileOutputStream("headerFooter.xlsx");
        wb.write(fileOut);
        fileOut.close();
View Full Code Here

Examples of org.apache.qpid.amqp_1_0.type.messaging.Footer

                          SessionImpl session)
    {
        _header = header == null ? new Header() : header;
        _properties = properties == null ? new Properties() : properties;
        _messageAnnotations = messageAnnotations == null ? new MessageAnnotations(new HashMap()) : messageAnnotations;
        _footer = footer == null ? new Footer(Collections.EMPTY_MAP) : footer;
        _applicationProperties = appProperties == null ? new ApplicationProperties(new HashMap()) : appProperties;
        _sessionImpl = session;
    }
View Full Code Here

Examples of org.apache.qpid.amqp_1_0.type.messaging.Footer

                          SessionImpl session)
    {
        _header = header == null ? new Header() : header;
        _properties = properties == null ? new Properties() : properties;
        _messageAnnotations = messageAnnotations == null ? new MessageAnnotations(new HashMap()) : messageAnnotations;
        _footer = footer == null ? new Footer(Collections.EMPTY_MAP) : footer;
        _applicationProperties = appProperties == null ? new ApplicationProperties(new HashMap()) : appProperties;
        _sessionImpl = session;
    }
View Full Code Here

Examples of org.apache.qpid.amqp_1_0.type.messaging.Footer

        Header h = new Header();
        Properties p = new Properties();
        p.setTo("queue");
        //p.setMessageId(new Binary(UUID.randomUUID().toString().getBytes()));

        Footer f = new Footer(Collections.EMPTY_MAP);

        Section[] sections = new Section[] { h,p,f};
        //Section[] sections = new Section[] { b };
        //Section[] sections = { h,p, b};
/*
 
View Full Code Here
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.