Represents an element in the context of a CMNode
.
IDL:
interface CMChildren {
attribute DOMString listOperator;
attribute CMDataType elementType;
attribute int multiplicity;
attribute CMNamedNodeMap subModels;
readonly attribute boolean isPCDataOnly;
};
Java binding:
package org.w3c.dom.contentModel;
public interface CMChildren {
public String getListOperator();
public void setListOperator(String listOperator);
public CMDataType getElementType();
public void setElementType(CMDataType elementType);
public int getMultiplicity();
public void setMultiplicity(int multiplicity);
public CMNamedNodeMap getSubModels();
public void setSubModels(CMNamedNodeMap subModels);
public boolean getIsPCDataOnly();
}