Package factOrFiction.print

Examples of factOrFiction.print.IAnnotator


   */
  @Override
  protected void configureShell(Shell shell) {
    super.configureShell(shell);

    IAnnotator annotator = pageFrame.getFrameAnnotation();
   
    if ( annotator != null) {
      String s = annotator.getAnnotation();
      if( s != null )
        shell.setText("Printing " + s + "...");
    }
  }
View Full Code Here


      new FlowDownFrame(page, 1, 0.01);

      PrintFrame footer = new FlowDownFrame(page, 1, 0.02);
      createFooter(footer);
   
      page.setAnnotator(new IAnnotator() {
        public String getAnnotation() {
          return deck.getName();
        }
      });
    return page;
View Full Code Here

TOP

Related Classes of factOrFiction.print.IAnnotator

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.