1 28 package net.sf.jasperreports.engine.xml; 29 30 import net.sf.jasperreports.engine.base.JRBaseBox; 31 32 import org.xml.sax.Attributes ; 33 34 38 public class JRBaseBoxFactory extends JRBoxFactory 39 { 40 41 public Object createObject(Attributes atts) 42 { 43 JRBaseBox box = new JRBaseBox(); 44 setBoxAttributes(atts, box); 45 return box; 46 } 47 48 } 49 | Popular Tags |