Package com.adobe.xfa.connectionset
Class ConnectionSetModelFactory
- java.lang.Object
-
- com.adobe.xfa.ModelFactory
-
- com.adobe.xfa.connectionset.ConnectionSetModelFactory
-
public final class ConnectionSetModelFactory extends ModelFactory
A class to represent XFA connectionset model factories. A connectionset model factory is used by an application model to create a connectionset model where appropriate, when loading an XML file.
-
-
Constructor Summary
Constructors Constructor Description ConnectionSetModelFactory()
Instantiates a connectionset model factory.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Model
createDOM(Element parent)
Create the XML DOM node and the corresponding XFA Model.void
registerProxy(ConnectionSetProxy oProxy)
-
Methods inherited from class com.adobe.xfa.ModelFactory
getAllowAdd, isRootName, rootName, setOption
-
-
-
-
Method Detail
-
createDOM
public Model createDOM(Element parent)
Description copied from class:ModelFactory
Create the XML DOM node and the corresponding XFA Model. In C++, this only creates the XML DOM node, and a separate step creates the corresponding Model node. In XFA4J, the we don't have the capability of calling AppModel.loadNode to instantiate an XFA Model from the DOM node, so this method is changed to create the XFA model.- Specified by:
createDOM
in classModelFactory
- Parameters:
parent
- the XFA DOM node that will be the XML parent of the new DOM peer.- Returns:
- the XFA Model that was created.
-
registerProxy
public void registerProxy(ConnectionSetProxy oProxy)
-
-