1 32 33 package it.businesslogic.ireport; 34 35 39 public class StaticTextReportElement extends it.businesslogic.ireport.TextReportElement { 40 41 42 public StaticTextReportElement(int x, int y, int width, int height) 43 { 44 super(x,y,width,height); 45 this.setText(it.businesslogic.ireport.util.I18n.getString("staticText", "Static text")); 47 setKey("staticText"); 48 } 49 50 public ReportElement cloneMe() 51 { 52 StaticTextReportElement newReportElement = new StaticTextReportElement(position.x, position.y, width, height); 53 copyBaseReportElement(newReportElement, this); 54 return newReportElement; 55 } 56 } 57 | Popular Tags |