Package ar.com.fdvs.dj.core.layout

Examples of ar.com.fdvs.dj.core.layout.HorizontalBandAlignment


   * @param alignment <br>ALIGMENT_LEFT <br> ALIGMENT_CENTER <br> ALIGMENT_RIGHT
   * @param width the width of the message
   * @return
   */
  public DynamicReportBuilder addAutoText(String message, byte position, byte alignment, int width) {
    HorizontalBandAlignment alignment_ = HorizontalBandAlignment.buildAligment(alignment);
    AutoText text = new AutoText(message,position,alignment_,new Integer(width));
    addAutoText(text);
    return this;
  }
View Full Code Here


   * @param position   POSITION_HEADER or POSITION_FOOTER
   * @param alignment  <br>ALIGMENT_LEFT <br> ALIGMENT_CENTER <br> ALIGMENT_RIGHT
   * @return
   */
  public DynamicReportBuilder addAutoText(byte type, byte position, byte alignment, int width, int width2) {
    HorizontalBandAlignment alignment_ = HorizontalBandAlignment.buildAligment(alignment);
    AutoText text = new AutoText(type,position,alignment_);
    text.setWidth(new Integer(width));
    text.setWidth2(new Integer(width2));
    addAutoText(text);
    return this;
View Full Code Here

   * @param position   POSITION_HEADER or POSITION_FOOTER
   * @param alignment  <br>ALIGMENT_LEFT <br> ALIGMENT_CENTER <br> ALIGMENT_RIGHT
   * @return
   */
  public DynamicReportBuilder addAutoText(byte type, byte position, byte alignment) {
    HorizontalBandAlignment alignment_ = HorizontalBandAlignment.buildAligment(alignment);
    AutoText text = new AutoText(type,position,alignment_);
    text.setWidth(AutoText.WIDTH_NOT_SET);
    text.setWidth2(AutoText.WIDTH_NOT_SET);
    addAutoText(text);
    return this;
View Full Code Here

   * @param alignment  <br>ALIGMENT_LEFT <br> ALIGMENT_CENTER <br> ALIGMENT_RIGHT
   * @param pattern   only for dates:  <br>PATTERN_DATE_DATE_ONLY <br> PATTERN_DATE_TIME_ONLY <br> PATTERN_DATE_DATE_TIME
   * @return
   */
  public DynamicReportBuilder addAutoText(byte type, byte position, byte alignment,byte pattern) {
    HorizontalBandAlignment alignment_ = HorizontalBandAlignment.buildAligment(alignment);
    AutoText text = new AutoText(type,position,alignment_,pattern);
    addAutoText(text);

    return this;
  }
View Full Code Here

   * @param width with of the autotext. If autotext is of the type AUTOTEXT_PAGE_X_OF_Y or AUTOTEXT_PAGE_X_SLASH_Y then is the width of the first part
   * @param width2  If autotext is of the type AUTOTEXT_PAGE_X_OF_Y or AUTOTEXT_PAGE_X_SLASH_Y, this defines the width given to the "total page" variable
   * @return
   */
  public DynamicReportBuilder addAutoText(byte type, byte position, byte alignment,byte pattern, int width, int width2) {
    HorizontalBandAlignment alignment_ = HorizontalBandAlignment.buildAligment(alignment);
    AutoText text = new AutoText(type,position,alignment_,pattern,width,width2);
    addAutoText(text);

    return this;
  }
View Full Code Here

   * @param position  POSITION_HEADER or POSITION_FOOTER
   * @param alignment <br>ALIGMENT_LEFT <br> ALIGMENT_CENTER <br> ALIGMENT_RIGHT
   * @return
   */
  public DynamicReportBuilder addAutoText(String message, byte position, byte alignment) {
    HorizontalBandAlignment alignment_ = HorizontalBandAlignment.buildAligment(alignment);
    AutoText text = new AutoText(message,position,alignment_);
    text.setWidth(AutoText.WIDTH_NOT_SET);
    addAutoText(text);
    return this;
  }
View Full Code Here

   * @param alignment  <br>ALIGMENT_LEFT <br> ALIGMENT_CENTER <br> ALIGMENT_RIGHT
   * @param pattern   only for dates:  <br>PATTERN_DATE_DATE_ONLY <br> PATTERN_DATE_TIME_ONLY <br> PATTERN_DATE_DATE_TIME
   * @return
   */
  public DynamicReportBuilder addAutoText(byte type, byte position, byte alignment,byte pattern) {
    HorizontalBandAlignment alignment_ = HorizontalBandAlignment.buildAligment(alignment);
    AutoText text = new AutoText(type,position,alignment_,pattern);
    addAutoText(text);

    return this;
  }
View Full Code Here

   * @param position  POSITION_HEADER or POSITION_FOOTER
   * @param alignment <br>ALIGMENT_LEFT <br> ALIGMENT_CENTER <br> ALIGMENT_RIGHT
   * @return
   */
  public DynamicReportBuilder addAutoText(String message, byte position, byte alignment) {
    HorizontalBandAlignment alignment_ = HorizontalBandAlignment.buildAligment(alignment);
    AutoText text = new AutoText(message,position,alignment_);
    addAutoText(text);
    return this;
  }
View Full Code Here

   * @param position   POSITION_HEADER or POSITION_FOOTER
   * @param alignment  <br>ALIGMENT_LEFT <br> ALIGMENT_CENTER <br> ALIGMENT_RIGHT
   * @return
   */
  public DynamicReportBuilder addAutoText(byte type, byte position, byte alignment) {
    HorizontalBandAlignment alignment_ = HorizontalBandAlignment.buildAligment(alignment);
    AutoText text = new AutoText(type,position,alignment_);
    addAutoText(text);
    return this;
  }
View Full Code Here

   * @param alignment  <br>ALIGMENT_LEFT <br> ALIGMENT_CENTER <br> ALIGMENT_RIGHT
   * @param pattern   only for dates:  <br>PATTERN_DATE_DATE_ONLY <br> PATTERN_DATE_TIME_ONLY <br> PATTERN_DATE_DATE_TIME
   * @return
   */
  public DynamicReportBuilder addAutoText(byte type, byte position, byte alignment,byte pattern) {
    HorizontalBandAlignment alignment_ = HorizontalBandAlignment.buildAligment(alignment);
    AutoText text = new AutoText(type,position,alignment_,pattern);
    addAutoText(text);

    return this;
  }
View Full Code Here

TOP

Related Classes of ar.com.fdvs.dj.core.layout.HorizontalBandAlignment

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.