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

/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/util/
H A DSecurityManager.java108 private int fElementAttributeLimit; field in class:SecurityManager
118 fElementAttributeLimit = DEFAULT_ELEMENT_ATTRIBUTE_LIMIT;
173 return fElementAttributeLimit;
177 fElementAttributeLimit = limit;
208 fElementAttributeLimit = Integer.parseInt(value);
209 if ( fElementAttributeLimit < 0)
210 fElementAttributeLimit = DEFAULT_ELEMENT_ATTRIBUTE_LIMIT;
213 fElementAttributeLimit = DEFAULT_ELEMENT_ATTRIBUTE_LIMIT;
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/impl/
H A DXMLDocumentFragmentScannerImpl.java89 protected int fElementAttributeLimit; field in class:XMLDocumentFragmentScannerImpl
573 fElementAttributeLimit = (fSecurityManager != null)?fSecurityManager.getElementAttrLimit():0;
1320 if (fSecurityManager != null && fAttributes.getLength() > fElementAttributeLimit){

Completed in 47 milliseconds