
org.cip4.jdflib.resource.JDFAdhesiveBindingParams Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of JDFLibJ Show documentation
Show all versions of JDFLibJ Show documentation
CIP4 JDF Library for JDF 1.x
/**
==========================================================================
class JDFAdhesiveBindingParams
==========================================================================
@COPYRIGHT Heidelberger Druckmaschinen AG, 1999-2001
ALL RIGHTS RESERVED
@Author: [email protected] using a code generator
Warning! very preliminary test version. Interface subject to change without prior notice!
Revision history: ...
**/
package org.cip4.jdflib.resource;
import org.apache.xerces.dom.CoreDocumentImpl;
import org.cip4.jdflib.auto.JDFAutoAdhesiveBindingParams;
import org.w3c.dom.DOMException;
public class JDFAdhesiveBindingParams extends JDFAutoAdhesiveBindingParams
{
private static final long serialVersionUID = 1L;
/**
* Constructor for JDFAdhesiveBindingParams
*
* @param myOwnerDocument
* @param qualifiedName
* @throws DOMException
*/
public JDFAdhesiveBindingParams(CoreDocumentImpl myOwnerDocument, String qualifiedName) throws DOMException
{
super(myOwnerDocument, qualifiedName);
}
/**
* Constructor for JDFAdhesiveBindingParams
*
* @param myOwnerDocument
* @param myNamespaceURI
* @param qualifiedName
* @throws DOMException
*/
public JDFAdhesiveBindingParams(CoreDocumentImpl myOwnerDocument, String myNamespaceURI, String qualifiedName) throws DOMException
{
super(myOwnerDocument, myNamespaceURI, qualifiedName);
}
/**
* Constructor for JDFAdhesiveBindingParams
*
* @param myOwnerDocument
* @param myNamespaceURI
* @param qualifiedName
* @param myLocalName
* @throws DOMException
*/
public JDFAdhesiveBindingParams(CoreDocumentImpl myOwnerDocument, String myNamespaceURI, String qualifiedName, String myLocalName) throws DOMException
{
super(myOwnerDocument, myNamespaceURI, qualifiedName, myLocalName);
}
/**
* toString()
*
* @return String
*/
@Override
public String toString()
{
return "JDFAdhesiveBindingParams[ --> " + super.toString() + " ]";
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy