/** * Creates a given <CODE>Section</CODE> following a set of attributes and adds it to this one. * * @param attributes the attributes * @return a Section * @deprecated Use ElementFactory.getSection(this, attributes) */ public Section addSection(java.util.Properties attributes) { return com.lowagie.text.factories.ElementFactory.getSection(this, attributes); }
/** * Returns an <CODE>Anchor</CODE> that has been constructed taking in account the value of some * <VAR>attributes</VAR>. * * @param attributes Some attributes * @deprecated As of iText 2.0.3, replaced by {@link * com.lowagie.text.factories.ElementFactory#getAnchor(Properties)}, scheduled for removel at * 2.1.0 */ public Anchor(java.util.Properties attributes) { this(com.lowagie.text.factories.ElementFactory.getAnchor(attributes)); }