
org.cip4.jdflib.jmf.JDFNodeInfoQuParams 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
/**
*
* Copyright (c) 2001 Heidelberger Druckmaschinen AG, All Rights Reserved.
*
* JDFNodeInfoQuParams.java
*
* Last changes
*
* 2002-07-02 JG - init() Also call super::init()
*
*/
package org.cip4.jdflib.jmf;
import org.apache.xerces.dom.CoreDocumentImpl;
import org.cip4.jdflib.auto.JDFAutoNodeInfoQuParams;
import org.cip4.jdflib.datatypes.JDFAttributeMap;
import org.cip4.jdflib.datatypes.VJDFAttributeMap;
/**
*
*/
public class JDFNodeInfoQuParams extends JDFAutoNodeInfoQuParams
{
private static final long serialVersionUID = 1L;
/**
* Constructor for JDFNodeInfoQuParams
*
* @param myOwnerDocument
* @param qualifiedName
*/
public JDFNodeInfoQuParams(CoreDocumentImpl myOwnerDocument, String qualifiedName)
{
super(myOwnerDocument, qualifiedName);
}
/**
* Constructor for JDFNodeInfoQuParams
*
* @param myOwnerDocument
* @param myNamespaceURI
* @param qualifiedName
*/
public JDFNodeInfoQuParams(CoreDocumentImpl myOwnerDocument, String myNamespaceURI, String qualifiedName)
{
super(myOwnerDocument, myNamespaceURI, qualifiedName);
}
/**
* Constructor for JDFNodeInfoQuParams
*
* @param myOwnerDocument
* @param myNamespaceURI
* @param qualifiedName
* @param myLocalName
*/
public JDFNodeInfoQuParams(CoreDocumentImpl myOwnerDocument, String myNamespaceURI, String qualifiedName, String myLocalName)
{
super(myOwnerDocument, myNamespaceURI, qualifiedName, myLocalName);
}
// **************************************** Methods
// *********************************************
/**
* toString
*
* @return String
*/
@Override
public String toString()
{
return "JDFNodeInfoQuParams[ --> " + super.toString() + " ]";
}
/**
* get part map vector
*
* @return VJDFAttributeMap: vector of attribute maps, one for each part
*/
@Override
public VJDFAttributeMap getPartMapVector()
{
return super.getPartMapVector();
}
/**
* set all parts to those defined in vParts
*
* @param vParts vector of attribute maps for the parts
*/
@Override
public void setPartMapVector(VJDFAttributeMap vParts)
{
super.setPartMapVector(vParts);
}
/**
* set all parts to those defined in mPart
*
* @param mPart attribute map for the part to set
*/
@Override
public void setPartMap(JDFAttributeMap mPart)
{
super.setPartMap(mPart);
}
/**
* remove the part defined in mPart
*
* @param mPart attribute map for the part to remove
*/
@Override
public void removePartMap(JDFAttributeMap mPart)
{
super.removePartMap(mPart);
}
/**
* check whether the part defined in mPart is included
*
* @param mPart attribute map to look for
* @return boolean - returns true if the part exists
*/
@Override
public boolean hasPartMap(JDFAttributeMap mPart)
{
return super.hasPartMap(mPart);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy