Bill, Next time...Please Resolve the JIRA issue as well?
thanks, dims On 1/31/07, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote:
Author: nagy Date: Wed Jan 31 20:48:02 2007 New Revision: 502121 URL: http://svn.apache.org/viewvc?view=rev&rev=502121 Log: WSCOMMONS-155 Contributor: Takahide Nogayama Added "getReaderProperty" method to get feature/property of underlying XMLStreamReader implementation Modified: webservices/commons/trunk/modules/axiom/modules/axiom-api/src/main/java/org/apache/axiom/om/impl/builder/StAXBuilder.java Modified: webservices/commons/trunk/modules/axiom/modules/axiom-api/src/main/java/org/apache/axiom/om/impl/builder/StAXBuilder.java URL: http://svn.apache.org/viewvc/webservices/commons/trunk/modules/axiom/modules/axiom-api/src/main/java/org/apache/axiom/om/impl/builder/StAXBuilder.java?view=diff&rev=502121&r1=502120&r2=502121 ============================================================================== --- webservices/commons/trunk/modules/axiom/modules/axiom-api/src/main/java/org/apache/axiom/om/impl/builder/StAXBuilder.java (original) +++ webservices/commons/trunk/modules/axiom/modules/axiom-api/src/main/java/org/apache/axiom/om/impl/builder/StAXBuilder.java Wed Jan 31 20:48:02 2007 @@ -506,4 +506,15 @@ { return null; } + + /** + * Get the value of a feature/property from the underlying XMLStreamReader implementation + * without accessing the XMLStreamReader. + * https://issues.apache.org/jira/browse/WSCOMMONS-155 + * @param name + * @return + */ + public Object getReaderProperty(String name) throws IllegalArgumentException { + return parser.getProperty(name); + } } --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
-- Davanum Srinivas :: http://wso2.org/ :: Oxygen for Web Services Developers --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
