| <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> |
| <!-- NewPage --> |
| <html lang="en"> |
| <head> |
| <!-- Generated by javadoc (version 1.7.0_11) on Wed Sep 18 01:55:17 EDT 2013 --> |
| <title>Validator (EclipseLink 2.5.1, build 'v20130918-f2b9fc5' API Reference)</title> |
| <meta name="date" content="2013-09-18"> |
| <link rel="stylesheet" type="text/css" href="../../../stylesheet.css" title="Style"> |
| </head> |
| <body> |
| <script type="text/javascript"><!-- |
| if (location.href.indexOf('is-external=true') == -1) { |
| parent.document.title="Validator (EclipseLink 2.5.1, build 'v20130918-f2b9fc5' API Reference)"; |
| } |
| //--> |
| </script> |
| <noscript> |
| <div>JavaScript is disabled on your browser.</div> |
| </noscript> |
| <!-- ========= START OF TOP NAVBAR ======= --> |
| <div class="topNav"><a name="navbar_top"> |
| <!-- --> |
| </a><a href="#skip-navbar_top" title="Skip navigation links"></a><a name="navbar_top_firstrow"> |
| <!-- --> |
| </a> |
| <ul class="navList" title="Navigation"> |
| <li><a href="../../../overview-summary.html">Overview</a></li> |
| <li><a href="package-summary.html">Package</a></li> |
| <li class="navBarCell1Rev">Class</li> |
| <li><a href="package-tree.html">Tree</a></li> |
| <li><a href="../../../deprecated-list.html">Deprecated</a></li> |
| <li><a href="../../../index-all.html">Index</a></li> |
| <li><a href="../../../help-doc.html">Help</a></li> |
| </ul> |
| <div class="aboutLanguage"><em>EclipseLink 2.5.1, build 'v20130918-f2b9fc5' API Reference</em></div> |
| </div> |
| <div class="subNav"> |
| <ul class="navList"> |
| <li><a href="../../../javax/xml/bind/ValidationException.html" title="class in javax.xml.bind"><span class="strong">Prev Class</span></a></li> |
| <li>Next Class</li> |
| </ul> |
| <ul class="navList"> |
| <li><a href="../../../index.html?javax/xml/bind/Validator.html" target="_top">Frames</a></li> |
| <li><a href="Validator.html" target="_top">No Frames</a></li> |
| </ul> |
| <ul class="navList" id="allclasses_navbar_top"> |
| <li><a href="../../../allclasses-noframe.html">All Classes</a></li> |
| </ul> |
| <div> |
| <script type="text/javascript"><!-- |
| allClassesLink = document.getElementById("allclasses_navbar_top"); |
| if(window==top) { |
| allClassesLink.style.display = "block"; |
| } |
| else { |
| allClassesLink.style.display = "none"; |
| } |
| //--> |
| </script> |
| </div> |
| <div> |
| <ul class="subNavList"> |
| <li>Summary: </li> |
| <li>Nested | </li> |
| <li>Field | </li> |
| <li>Constr | </li> |
| <li><a href="#method_summary">Method</a></li> |
| </ul> |
| <ul class="subNavList"> |
| <li>Detail: </li> |
| <li>Field | </li> |
| <li>Constr | </li> |
| <li><a href="#method_detail">Method</a></li> |
| </ul> |
| </div> |
| <a name="skip-navbar_top"> |
| <!-- --> |
| </a></div> |
| <!-- ========= END OF TOP NAVBAR ========= --> |
| <!-- ======== START OF CLASS DATA ======== --> |
| <div class="header"> |
| <div class="subTitle">javax.xml.bind</div> |
| <h2 title="Interface Validator" class="title">Interface Validator</h2> |
| </div> |
| <div class="contentContainer"> |
| <div class="description"> |
| <ul class="blockList"> |
| <li class="blockList"> |
| <dl> |
| <dt>All Known Implementing Classes:</dt> |
| <dd><a href="../../../org/eclipse/persistence/jaxb/JAXBValidator.html" title="class in org.eclipse.persistence.jaxb">JAXBValidator</a></dd> |
| </dl> |
| <hr> |
| <div class="block"><strong>Deprecated.</strong> |
| <div class="block"><i>since JAXB 2.0</i></div> |
| </div> |
| <br> |
| <pre>public interface <span class="strong">Validator</span></pre> |
| <div class="block">As of JAXB 2.0, this class is deprecated and optional. |
| <p> |
| The <tt>Validator</tt> class is responsible for controlling the validation |
| of content trees during runtime. |
| |
| <p> |
| <a name="validationtypes"></a> |
| <b>Three Forms of Validation</b><br> |
| <blockquote> |
| <dl> |
| <dt><b>Unmarshal-Time Validation</b></dt> |
| <dd>This form of validation enables a client application to receive |
| information about validation errors and warnings detected while |
| unmarshalling XML data into a Java content tree and is completely |
| orthogonal to the other types of validation. To enable or disable |
| it, see the javadoc for |
| <a href="../../../javax/xml/bind/Unmarshaller.html#setValidating(boolean)"><code>Unmarshaller.setValidating</code></a>. |
| All JAXB 1.0 Providers are required to support this operation. |
| </dd> |
| |
| <dt><b>On-Demand Validation</b></dt> |
| <dd> This form of validation enables a client application to receive |
| information about validation errors and warnings detected in the |
| Java content tree. At any point, client applications can call |
| the <a href="../../../javax/xml/bind/Validator.html#validate(java.lang.Object)"><code>Validator.validate</code></a> method |
| on the Java content tree (or any sub-tree of it). All JAXB 1.0 |
| Providers are required to support this operation. |
| </dd> |
| |
| <dt><b>Fail-Fast Validation</b></dt> |
| <dd> This form of validation enables a client application to receive |
| immediate feedback about modifications to the Java content tree |
| that violate type constraints on Java Properties as defined in |
| the specification. JAXB Providers are not required support |
| this type of validation. Of the JAXB Providers that do support |
| this type of validation, some may require you to decide at schema |
| compile time whether or not a client application will be allowed |
| to request fail-fast validation at runtime. |
| </dd> |
| </dl> |
| </blockquote> |
| |
| <p> |
| The <tt>Validator</tt> class is responsible for managing On-Demand Validation. |
| The <tt>Unmarshaller</tt> class is responsible for managing Unmarshal-Time |
| Validation during the unmarshal operations. Although there is no formal |
| method of enabling validation during the marshal operations, the |
| <tt>Marshaller</tt> may detect errors, which will be reported to the |
| <tt>ValidationEventHandler</tt> registered on it. |
| |
| <p> |
| <a name="defaulthandler"></a> |
| <b>Using the Default EventHandler</b><br> |
| <blockquote> |
| If the client application does not set an event handler on their |
| <tt>Validator</tt>, <tt>Unmarshaller</tt>, or <tt>Marshaller</tt> prior to |
| calling the validate, unmarshal, or marshal methods, then a default event |
| handler will receive notification of any errors or warnings encountered. |
| The default event handler will cause the current operation to halt after |
| encountering the first error or fatal error (but will attempt to continue |
| after receiving warnings). |
| </blockquote> |
| |
| <p> |
| <a name="handlingevents"></a> |
| <b>Handling Validation Events</b><br> |
| <blockquote> |
| There are three ways to handle events encountered during the unmarshal, |
| validate, and marshal operations: |
| <dl> |
| <dt>Use the default event handler</dt> |
| <dd>The default event handler will be used if you do not specify one |
| via the <tt>setEventHandler</tt> API's on <tt>Validator</tt>, |
| <tt>Unmarshaller</tt>, or <tt>Marshaller</tt>. |
| </dd> |
| |
| <dt>Implement and register a custom event handler</dt> |
| <dd>Client applications that require sophisticated event processing |
| can implement the <tt>ValidationEventHandler</tt> interface and |
| register it with the <tt>Unmarshaller</tt> and/or |
| <tt>Validator</tt>. |
| </dd> |
| |
| <dt>Use the <a href="../../../javax/xml/bind/util/ValidationEventCollector.html" title="class in javax.xml.bind.util"><code>ValidationEventCollector</code></a> |
| utility</dt> |
| <dd>For convenience, a specialized event handler is provided that |
| simply collects any <tt>ValidationEvent</tt> objects created |
| during the unmarshal, validate, and marshal operations and |
| returns them to the client application as a |
| <tt>java.util.Collection</tt>. |
| </dd> |
| </dl> |
| </blockquote> |
| |
| <p> |
| <b>Validation and Well-Formedness</b><br> |
| <blockquote> |
| <p> |
| Validation events are handled differently depending on how the client |
| application is configured to process them as described in the previous |
| section. However, there are certain cases where a JAXB Provider indicates |
| that it is no longer able to reliably detect and report errors. In these |
| cases, the JAXB Provider will set the severity of the ValidationEvent to |
| FATAL_ERROR to indicate that the unmarshal, validate, or marshal operations |
| should be terminated. The default event handler and |
| <tt>ValidationEventCollector</tt> utility class must terminate processing |
| after being notified of a fatal error. Client applications that supply their |
| own <tt>ValidationEventHandler</tt> should also terminate processing after |
| being notified of a fatal error. If not, unexpected behaviour may occur. |
| </blockquote> |
| |
| <p> |
| <a name="supportedProps"></a> |
| <b>Supported Properties</b><br> |
| <blockquote> |
| <p> |
| There currently are not any properties required to be supported by all |
| JAXB Providers on Validator. However, some providers may support |
| their own set of provider specific properties. |
| </blockquote></div> |
| <dl><dt><span class="strong">See Also:</span></dt><dd><a href="../../../javax/xml/bind/JAXBContext.html" title="class in javax.xml.bind"><code>JAXBContext</code></a>, |
| <a href="../../../javax/xml/bind/Unmarshaller.html" title="interface in javax.xml.bind"><code>Unmarshaller</code></a>, |
| <a href="../../../javax/xml/bind/ValidationEventHandler.html" title="interface in javax.xml.bind"><code>ValidationEventHandler</code></a>, |
| <a href="../../../javax/xml/bind/ValidationEvent.html" title="interface in javax.xml.bind"><code>ValidationEvent</code></a>, |
| <a href="../../../javax/xml/bind/util/ValidationEventCollector.html" title="class in javax.xml.bind.util"><code>ValidationEventCollector</code></a></dd><dt><span class="strong">Author:</span></dt> |
| <dd><ul><li>Ryan Shoemaker, Sun Microsystems, Inc.</li><li>Kohsuke Kawaguchi, Sun Microsystems, Inc.</li><li>Joe Fialli, Sun Microsystems, Inc.</li></ul></dd> |
| <dt><span class="strong">Since:</span></dt> |
| <dd>JAXB1.0</dd></dl> |
| </li> |
| </ul> |
| </div> |
| <div class="summary"> |
| <ul class="blockList"> |
| <li class="blockList"> |
| <!-- ========== METHOD SUMMARY =========== --> |
| <ul class="blockList"> |
| <li class="blockList"><a name="method_summary"> |
| <!-- --> |
| </a> |
| <h3>Method Summary</h3> |
| <table class="overviewSummary" border="0" cellpadding="3" cellspacing="0" summary="Method Summary table, listing methods, and an explanation"> |
| <caption><span>Methods</span><span class="tabEnd"> </span></caption> |
| <tr> |
| <th class="colFirst" scope="col">Modifier and Type</th> |
| <th class="colLast" scope="col">Method and Description</th> |
| </tr> |
| <tr class="altColor"> |
| <td class="colFirst"><code><a href="../../../javax/xml/bind/ValidationEventHandler.html" title="interface in javax.xml.bind">ValidationEventHandler</a></code></td> |
| <td class="colLast"><code><strong><a href="../../../javax/xml/bind/Validator.html#getEventHandler()">getEventHandler</a></strong>()</code> |
| <div class="block"><strong>Deprecated.</strong> |
| <div class="block"><i>since JAXB2.0</i></div> |
| </div> |
| </td> |
| </tr> |
| <tr class="rowColor"> |
| <td class="colFirst"><code>java.lang.Object</code></td> |
| <td class="colLast"><code><strong><a href="../../../javax/xml/bind/Validator.html#getProperty(java.lang.String)">getProperty</a></strong>(java.lang.String name)</code> |
| <div class="block"><strong>Deprecated.</strong> |
| <div class="block"><i>since JAXB2.0</i></div> |
| </div> |
| </td> |
| </tr> |
| <tr class="altColor"> |
| <td class="colFirst"><code>void</code></td> |
| <td class="colLast"><code><strong><a href="../../../javax/xml/bind/Validator.html#setEventHandler(javax.xml.bind.ValidationEventHandler)">setEventHandler</a></strong>(<a href="../../../javax/xml/bind/ValidationEventHandler.html" title="interface in javax.xml.bind">ValidationEventHandler</a> handler)</code> |
| <div class="block"><strong>Deprecated.</strong> |
| <div class="block"><i>since JAXB2.0</i></div> |
| </div> |
| </td> |
| </tr> |
| <tr class="rowColor"> |
| <td class="colFirst"><code>void</code></td> |
| <td class="colLast"><code><strong><a href="../../../javax/xml/bind/Validator.html#setProperty(java.lang.String, java.lang.Object)">setProperty</a></strong>(java.lang.String name, |
| java.lang.Object value)</code> |
| <div class="block"><strong>Deprecated.</strong> |
| <div class="block"><i>since JAXB2.0</i></div> |
| </div> |
| </td> |
| </tr> |
| <tr class="altColor"> |
| <td class="colFirst"><code>boolean</code></td> |
| <td class="colLast"><code><strong><a href="../../../javax/xml/bind/Validator.html#validate(java.lang.Object)">validate</a></strong>(java.lang.Object subrootObj)</code> |
| <div class="block"><strong>Deprecated.</strong> |
| <div class="block"><i>since JAXB2.0</i></div> |
| </div> |
| </td> |
| </tr> |
| <tr class="rowColor"> |
| <td class="colFirst"><code>boolean</code></td> |
| <td class="colLast"><code><strong><a href="../../../javax/xml/bind/Validator.html#validateRoot(java.lang.Object)">validateRoot</a></strong>(java.lang.Object rootObj)</code> |
| <div class="block"><strong>Deprecated.</strong> |
| <div class="block"><i>since JAXB2.0</i></div> |
| </div> |
| </td> |
| </tr> |
| </table> |
| </li> |
| </ul> |
| </li> |
| </ul> |
| </div> |
| <div class="details"> |
| <ul class="blockList"> |
| <li class="blockList"> |
| <!-- ============ METHOD DETAIL ========== --> |
| <ul class="blockList"> |
| <li class="blockList"><a name="method_detail"> |
| <!-- --> |
| </a> |
| <h3>Method Detail</h3> |
| <a name="setEventHandler(javax.xml.bind.ValidationEventHandler)"> |
| <!-- --> |
| </a> |
| <ul class="blockList"> |
| <li class="blockList"> |
| <h4>setEventHandler</h4> |
| <pre>void setEventHandler(<a href="../../../javax/xml/bind/ValidationEventHandler.html" title="interface in javax.xml.bind">ValidationEventHandler</a> handler) |
| throws <a href="../../../javax/xml/bind/JAXBException.html" title="class in javax.xml.bind">JAXBException</a></pre> |
| <div class="block"><span class="strong">Deprecated.</span> <i>since JAXB2.0</i></div> |
| <div class="block">Allow an application to register a validation event handler. |
| <p> |
| The validation event handler will be called by the JAXB Provider if any |
| validation errors are encountered during calls to |
| <a href="../../../javax/xml/bind/Validator.html#validate(java.lang.Object)"><code>validate</code></a>. If the client application does not |
| register a validation event handler before invoking the validate method, |
| then validation events will be handled by the default event handler which |
| will terminate the validate operation after the first error or fatal error |
| is encountered. |
| <p> |
| Calling this method with a null parameter will cause the Validator |
| to revert back to the default default event handler.</div> |
| <dl><dt><span class="strong">Parameters:</span></dt><dd><code>handler</code> - the validation event handler</dd> |
| <dt><span class="strong">Throws:</span></dt> |
| <dd><code><a href="../../../javax/xml/bind/JAXBException.html" title="class in javax.xml.bind">JAXBException</a></code> - if an error was encountered while setting the |
| event handler</dd></dl> |
| </li> |
| </ul> |
| <a name="getEventHandler()"> |
| <!-- --> |
| </a> |
| <ul class="blockList"> |
| <li class="blockList"> |
| <h4>getEventHandler</h4> |
| <pre><a href="../../../javax/xml/bind/ValidationEventHandler.html" title="interface in javax.xml.bind">ValidationEventHandler</a> getEventHandler() |
| throws <a href="../../../javax/xml/bind/JAXBException.html" title="class in javax.xml.bind">JAXBException</a></pre> |
| <div class="block"><span class="strong">Deprecated.</span> <i>since JAXB2.0</i></div> |
| <div class="block">Return the current event handler or the default event handler if one |
| hasn't been set.</div> |
| <dl><dt><span class="strong">Returns:</span></dt><dd>the current ValidationEventHandler or the default event handler |
| if it hasn't been set</dd> |
| <dt><span class="strong">Throws:</span></dt> |
| <dd><code><a href="../../../javax/xml/bind/JAXBException.html" title="class in javax.xml.bind">JAXBException</a></code> - if an error was encountered while getting the |
| current event handler</dd></dl> |
| </li> |
| </ul> |
| <a name="validate(java.lang.Object)"> |
| <!-- --> |
| </a> |
| <ul class="blockList"> |
| <li class="blockList"> |
| <h4>validate</h4> |
| <pre>boolean validate(java.lang.Object subrootObj) |
| throws <a href="../../../javax/xml/bind/JAXBException.html" title="class in javax.xml.bind">JAXBException</a></pre> |
| <div class="block"><span class="strong">Deprecated.</span> <i>since JAXB2.0</i></div> |
| <div class="block">Validate the Java content tree starting at <tt>subrootObj</tt>. |
| <p> |
| Client applications can use this method to validate Java content trees |
| on-demand at runtime. This method can be used to validate any arbitrary |
| subtree of the Java content tree. Global constraint checking <b>will not |
| </b> be performed as part of this operation (i.e. ID/IDREF constraints).</div> |
| <dl><dt><span class="strong">Parameters:</span></dt><dd><code>subrootObj</code> - the obj to begin validation at</dd> |
| <dt><span class="strong">Returns:</span></dt><dd>true if the subtree rooted at <tt>subrootObj</tt> is valid, false |
| otherwise</dd> |
| <dt><span class="strong">Throws:</span></dt> |
| <dd><code><a href="../../../javax/xml/bind/JAXBException.html" title="class in javax.xml.bind">JAXBException</a></code> - if any unexpected problem occurs during validation</dd> |
| <dd><code><a href="../../../javax/xml/bind/ValidationException.html" title="class in javax.xml.bind">ValidationException</a></code> - If the <a href="../../../javax/xml/bind/ValidationEventHandler.html" title="interface in javax.xml.bind"><code>ValidationEventHandler</code></a> |
| returns false from its <tt>handleEvent</tt> method or the |
| <tt>Validator</tt> is unable to validate the content tree rooted |
| at <tt>subrootObj</tt></dd> |
| <dd><code>java.lang.IllegalArgumentException</code> - If the subrootObj parameter is null</dd></dl> |
| </li> |
| </ul> |
| <a name="validateRoot(java.lang.Object)"> |
| <!-- --> |
| </a> |
| <ul class="blockList"> |
| <li class="blockList"> |
| <h4>validateRoot</h4> |
| <pre>boolean validateRoot(java.lang.Object rootObj) |
| throws <a href="../../../javax/xml/bind/JAXBException.html" title="class in javax.xml.bind">JAXBException</a></pre> |
| <div class="block"><span class="strong">Deprecated.</span> <i>since JAXB2.0</i></div> |
| <div class="block">Validate the Java content tree rooted at <tt>rootObj</tt>. |
| <p> |
| Client applications can use this method to validate Java content trees |
| on-demand at runtime. This method is used to validate an entire Java |
| content tree. Global constraint checking <b>will</b> be performed as |
| part of this operation (i.e. ID/IDREF constraints).</div> |
| <dl><dt><span class="strong">Parameters:</span></dt><dd><code>rootObj</code> - the root obj to begin validation at</dd> |
| <dt><span class="strong">Returns:</span></dt><dd>true if the tree rooted at <tt>rootObj</tt> is valid, false |
| otherwise</dd> |
| <dt><span class="strong">Throws:</span></dt> |
| <dd><code><a href="../../../javax/xml/bind/JAXBException.html" title="class in javax.xml.bind">JAXBException</a></code> - if any unexpected problem occurs during validation</dd> |
| <dd><code><a href="../../../javax/xml/bind/ValidationException.html" title="class in javax.xml.bind">ValidationException</a></code> - If the <a href="../../../javax/xml/bind/ValidationEventHandler.html" title="interface in javax.xml.bind"><code>ValidationEventHandler</code></a> |
| returns false from its <tt>handleEvent</tt> method or the |
| <tt>Validator</tt> is unable to validate the content tree rooted |
| at <tt>rootObj</tt></dd> |
| <dd><code>java.lang.IllegalArgumentException</code> - If the rootObj parameter is null</dd></dl> |
| </li> |
| </ul> |
| <a name="setProperty(java.lang.String, java.lang.Object)"> |
| <!-- --> |
| </a> |
| <ul class="blockList"> |
| <li class="blockList"> |
| <h4>setProperty</h4> |
| <pre>void setProperty(java.lang.String name, |
| java.lang.Object value) |
| throws <a href="../../../javax/xml/bind/PropertyException.html" title="class in javax.xml.bind">PropertyException</a></pre> |
| <div class="block"><span class="strong">Deprecated.</span> <i>since JAXB2.0</i></div> |
| <div class="block">Set the particular property in the underlying implementation of |
| <tt>Validator</tt>. This method can only be used to set one of |
| the standard JAXB defined properties above or a provider specific |
| property. Attempting to set an undefined property will result in |
| a PropertyException being thrown. See <a href="#supportedProps"> |
| Supported Properties</a>.</div> |
| <dl><dt><span class="strong">Parameters:</span></dt><dd><code>name</code> - the name of the property to be set. This value can either |
| be specified using one of the constant fields or a user |
| supplied string.</dd><dd><code>value</code> - the value of the property to be set</dd> |
| <dt><span class="strong">Throws:</span></dt> |
| <dd><code><a href="../../../javax/xml/bind/PropertyException.html" title="class in javax.xml.bind">PropertyException</a></code> - when there is an error processing the given |
| property or value</dd> |
| <dd><code>java.lang.IllegalArgumentException</code> - If the name parameter is null</dd></dl> |
| </li> |
| </ul> |
| <a name="getProperty(java.lang.String)"> |
| <!-- --> |
| </a> |
| <ul class="blockListLast"> |
| <li class="blockList"> |
| <h4>getProperty</h4> |
| <pre>java.lang.Object getProperty(java.lang.String name) |
| throws <a href="../../../javax/xml/bind/PropertyException.html" title="class in javax.xml.bind">PropertyException</a></pre> |
| <div class="block"><span class="strong">Deprecated.</span> <i>since JAXB2.0</i></div> |
| <div class="block">Get the particular property in the underlying implementation of |
| <tt>Validator</tt>. This method can only be used to get one of |
| the standard JAXB defined properties above or a provider specific |
| property. Attempting to get an undefined property will result in |
| a PropertyException being thrown. See <a href="#supportedProps"> |
| Supported Properties</a>.</div> |
| <dl><dt><span class="strong">Parameters:</span></dt><dd><code>name</code> - the name of the property to retrieve</dd> |
| <dt><span class="strong">Returns:</span></dt><dd>the value of the requested property</dd> |
| <dt><span class="strong">Throws:</span></dt> |
| <dd><code><a href="../../../javax/xml/bind/PropertyException.html" title="class in javax.xml.bind">PropertyException</a></code> - when there is an error retrieving the given property or value |
| property name</dd> |
| <dd><code>java.lang.IllegalArgumentException</code> - If the name parameter is null</dd></dl> |
| </li> |
| </ul> |
| </li> |
| </ul> |
| </li> |
| </ul> |
| </div> |
| </div> |
| <!-- ========= END OF CLASS DATA ========= --> |
| <!-- ======= START OF BOTTOM NAVBAR ====== --> |
| <div class="bottomNav"><a name="navbar_bottom"> |
| <!-- --> |
| </a><a href="#skip-navbar_bottom" title="Skip navigation links"></a><a name="navbar_bottom_firstrow"> |
| <!-- --> |
| </a> |
| <ul class="navList" title="Navigation"> |
| <li><a href="../../../overview-summary.html">Overview</a></li> |
| <li><a href="package-summary.html">Package</a></li> |
| <li class="navBarCell1Rev">Class</li> |
| <li><a href="package-tree.html">Tree</a></li> |
| <li><a href="../../../deprecated-list.html">Deprecated</a></li> |
| <li><a href="../../../index-all.html">Index</a></li> |
| <li><a href="../../../help-doc.html">Help</a></li> |
| </ul> |
| <div class="aboutLanguage"><em>EclipseLink 2.5.1, build 'v20130918-f2b9fc5' API Reference</em></div> |
| </div> |
| <div class="subNav"> |
| <ul class="navList"> |
| <li><a href="../../../javax/xml/bind/ValidationException.html" title="class in javax.xml.bind"><span class="strong">Prev Class</span></a></li> |
| <li>Next Class</li> |
| </ul> |
| <ul class="navList"> |
| <li><a href="../../../index.html?javax/xml/bind/Validator.html" target="_top">Frames</a></li> |
| <li><a href="Validator.html" target="_top">No Frames</a></li> |
| </ul> |
| <ul class="navList" id="allclasses_navbar_bottom"> |
| <li><a href="../../../allclasses-noframe.html">All Classes</a></li> |
| </ul> |
| <div> |
| <script type="text/javascript"><!-- |
| allClassesLink = document.getElementById("allclasses_navbar_bottom"); |
| if(window==top) { |
| allClassesLink.style.display = "block"; |
| } |
| else { |
| allClassesLink.style.display = "none"; |
| } |
| //--> |
| </script> |
| </div> |
| <div> |
| <ul class="subNavList"> |
| <li>Summary: </li> |
| <li>Nested | </li> |
| <li>Field | </li> |
| <li>Constr | </li> |
| <li><a href="#method_summary">Method</a></li> |
| </ul> |
| <ul class="subNavList"> |
| <li>Detail: </li> |
| <li>Field | </li> |
| <li>Constr | </li> |
| <li><a href="#method_detail">Method</a></li> |
| </ul> |
| </div> |
| <a name="skip-navbar_bottom"> |
| <!-- --> |
| </a></div> |
| <!-- ======== END OF BOTTOM NAVBAR ======= --> |
| </body> |
| </html> |