Search in sources :

Example 1 with X_AD_Form

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");
}
Also used : AttributesImpl(org.xml.sax.helpers.AttributesImpl) X_AD_Form(org.compiere.model.X_AD_Form)

Aggregations

X_AD_Form (org.compiere.model.X_AD_Form)1 AttributesImpl (org.xml.sax.helpers.AttributesImpl)1