use of org.compiere.model.X_AD_Form in project adempiere by adempiere.
the class FormElementHandler method create.
public void create(Properties ctx, TransformerHandler document) throws SAXException {
int AD_Form_ID = Env.getContextAsInt(ctx, "AD_Form_ID");
if (forms.contains(AD_Form_ID))
return;
forms.add(AD_Form_ID);
X_AD_Form m_Form = new X_AD_Form(ctx, AD_Form_ID, null);
AttributesImpl atts = new AttributesImpl();
createFormBinding(atts, m_Form);
document.startElement("", "", "form", atts);
document.endElement("", "", "form");
}
Aggregations