Searched defs:minChildren (Results 1 - 1 of 1) sorted by relevance

/openjdk7/jdk/src/share/classes/javax/imageio/metadata/
H A DIIOMetadataFormatImpl.java99 int minChildren = 0; field in class:IIOMetadataFormatImpl.Element
197 * @param minChildren the minimum number of children of the node.
202 * @exception IllegalArgumentException if <code>minChildren</code>
206 int minChildren,
211 if (minChildren < 0) {
212 throw new IllegalArgumentException("minChildren < 0!");
214 if (minChildren > maxChildren) {
215 throw new IllegalArgumentException("minChildren > maxChildren!");
221 root.minChildren = minChildren;
205 IIOMetadataFormatImpl(String rootName, int minChildren, int maxChildren) argument
354 addElement(String elementName, String parentName, int minChildren, int maxChildren) argument
[all...]

Completed in 184 milliseconds