8184431: References to @sun.com

Reviewed-by: lancea
This commit is contained in:
Joe Wang 2017-12-21 17:08:05 -08:00
parent 59c3bea9f1
commit 136c27b681
97 changed files with 137 additions and 147 deletions

View File

@ -46,7 +46,7 @@ import java.util.Map;
* @author Jacek Ambroziak
* @author Santiago Pericas-Geertsen
* @author Erwin Bolwidt <ejb@klomp.org>
* @author Morten Jorgensen <morten.jorgensen@sun.com>
* @author Morten Jorgensen
* @LastModified: Nov 2017
*/
final class TestSeq {

View File

@ -682,7 +682,6 @@ public class ElementImpl
// If the new name has a different prefix, the list may become unsorted.
// Maybe it would be better to resort the list, but the simplest
// fix seems to be to remove the old attribute and re-insert it.
// -- Norman.Walsh@Sun.COM, 2 Feb 2007
newAttr = (Attr) attributes.removeItem(newAttr, false);
attributes.addItem(newAttr);
}

View File

@ -37,13 +37,13 @@ import javax.xml.stream.XMLResolver;
import jdk.xml.internal.JdkXmlUtils;
/**
* This class manages different properties related to Stax specification and its implementation.
* This class manages different properties related to Stax specification and its implementation.
* This class constructor also takes itself (PropertyManager object) as parameter and initializes the
* object with the property taken from the object passed.
*
* @author Neeraj Bajaj, neeraj.bajaj@sun.com
* @author K.Venugopal@sun.com
* @author Sunitha Reddy, sunitha.reddy@sun.com
* @author Neeraj Bajaj
* @author K Venugopal
* @author Sunitha Reddy
*/
public class PropertyManager {

View File

@ -741,7 +741,7 @@ public class XML11NSDocumentScannerImpl extends XML11DocumentScannerImpl {
// Take advantage of the fact that next string _should_ be "fElementQName.rawName",
//In scanners most of the time is consumed on checks done for XML characters, we can
// optimize on it and avoid the checks done for endElement,
//we will also avoid symbol table lookup - neeraj.bajaj@sun.com
//we will also avoid symbol table lookup.
// this should work both for namespace processing true or false...

View File

@ -1670,7 +1670,7 @@ public class XMLDocumentFragmentScannerImpl
// Take advantage of the fact that next string _should_ be "fElementQName.rawName",
//In scanners most of the time is consumed on checks done for XML characters, we can
// optimize on it and avoid the checks done for endElement,
//we will also avoid symbol table lookup - neeraj.bajaj@sun.com
//we will also avoid symbol table lookup.
// this should work both for namespace processing true or false...
@ -2461,7 +2461,6 @@ public class XMLDocumentFragmentScannerImpl
* we dont need to set the value for every end element encouterd.
* For Well formedness checks we can have the same QName object that was pushed.
* the values will be set only if application need to know about the endElement
* -- neeraj.bajaj@sun.com
*/
public QName getLastPoppedElement(){

View File

@ -82,7 +82,7 @@ import org.xml.sax.helpers.DefaultHandler;
* only those events that need to go through Validator will go the 1st route,
* and other events go the 2nd direct route.
*
* @author Kohsuke Kawaguchi (kohsuke.kawaguchi@sun.com)
* @author Kohsuke Kawaguchi
*/
final class JAXPValidatorComponent
extends TeeXMLDocumentFilterImpl implements XMLComponent {
@ -344,7 +344,7 @@ final class JAXPValidatorComponent
* to reuse its default {@link com.sun.org.apache.xerces.internal.xni.XMLDocumentHandler}
* implementation.
*
* @author Kohsuke Kawaguchi (kohsuke.kawaguchi@sun.com)
* @author Kohsuke Kawaguchi
*/
private final class XNI2SAX extends DefaultXMLDocumentHandler {

View File

@ -36,7 +36,7 @@ import com.sun.org.apache.xerces.internal.xni.parser.XMLDocumentSource;
/**
* <p>XMLDocumentHandler which forks the pipeline to two other components.</p>
*
* @author Kohsuke Kawaguchi (kohsuke.kawaguchi@sun.com)
* @author Kohsuke Kawaguchi
*/
class TeeXMLDocumentFilterImpl implements XMLDocumentFilter {

View File

@ -57,8 +57,8 @@ import javax.xml.datatype.XMLGregorianCalendar;
* </li>
* </ol>
*
* @author <a href="mailto:Joseph.Fialli@Sun.COM">Joseph Fialli</a>
* @author <a href="mailto:Jeff.Suttor@Sun.com">Jeff Suttor</a>
* @author Joseph Fialli
* @author Jeff Suttor
*/
public class DatatypeFactoryImpl
extends DatatypeFactory {

View File

@ -41,9 +41,7 @@ import javax.xml.datatype.DatatypeConstants;
* </p>
*
*
* @author <a href="mailto:Vikram.Aroskar@Sun.COM">Vikram Aroskar</a>
* @author <a href="mailto:Huizhe.wang@oracle.com">Joe Wang</a>
* @author Vikram Aroskar
* @see XMLGregorianCalendar#add(Duration)
*/

View File

@ -95,9 +95,8 @@ import javax.xml.datatype.XMLGregorianCalendar;
* The impacted methods document their dependency on {@link Calendar}.
*
*
* @author <a href="mailto:Kohsuke.Kawaguchi@Sun.com">Kohsuke Kawaguchi</a>
* @author <a href="mailto:Joseph.Fialli@Sun.com">Joseph Fialli</a>
* @author Kohsuke Kawaguchi
* @author Joseph Fialli
* @see XMLGregorianCalendar#add(Duration)
*/
class DurationImpl
@ -1863,7 +1862,7 @@ class DurationImpl
/**
* Representation of {@link Duration} in the object stream.
*
* @author Kohsuke Kawaguchi (kohsuke.kawaguchi@sun.com)
* @author Kohsuke Kawaguchi
*/
private static class DurationStream implements Serializable {
private final String lexical;

View File

@ -40,9 +40,7 @@ import javax.xml.datatype.DatatypeConstants;
* </p>
*
*
* @author <a href="mailto:Vikram.Aroskar@Sun.COM">Vikram Aroskar</a>
* @author <a href="mailto:Huizhe.wang@oracle.com">Joe Wang</a>
* @author Vikram Aroskar
* @see XMLGregorianCalendar#add(Duration)
*/

View File

@ -185,9 +185,9 @@ import jdk.xml.internal.SecuritySupport;
* </ul>
* </p>
*
* @author <a href="mailto:Kohsuke.Kawaguchi@Sun.com">Kohsuke Kawaguchi</a>
* @author <a href="mailto:Joseph.Fialli@Sun.com">Joseph Fialli</a>
* @author <a href="mailto:Sunitha.Reddy@Sun.com">Sunitha Reddy</a>
* @author Kohsuke Kawaguchi
* @author Joseph Fialli
* @author Sunitha Reddy
* @see javax.xml.datatype.Duration
* @since 1.5
*/

View File

@ -28,7 +28,7 @@ import org.xml.sax.SAXParseException;
/**
* {@link ErrorHandler} that throws all errors and fatal errors.
*
* @author Kohsuke Kawaguchi (kohsuke.kawaguchi@sun.com)
* @author Kohsuke Kawaguchi
*/
final class DraconianErrorHandler implements ErrorHandler {

View File

@ -31,7 +31,7 @@ import org.xml.sax.SAXException;
* and pass them down to SAX {@link ErrorHandler}.
*
* @author
* Kohsuke Kawaguchi (kohsuke.kawaguchi@sun.com)
* Kohsuke Kawaguchi
*/
public abstract class ErrorHandlerAdaptor implements XMLErrorHandler
{

View File

@ -29,7 +29,7 @@ import com.sun.org.apache.xerces.internal.xni.grammars.XMLGrammarPool;
* <p>Filter {@link XMLGrammarPool} that exposes a
* read-only view of the underlying pool.</p>
*
* @author Kohsuke Kawaguchi (kohsuke.kawaguchi@sun.com)
* @author Kohsuke Kawaguchi
*/
final class ReadOnlyGrammarPool implements XMLGrammarPool {

View File

@ -47,7 +47,7 @@ import org.xml.sax.SAXException;
/**
* <p>A validator helper for <code>StAXSource</code>s.</p>
*
* @author <a href="mailto:Sunitha.Reddy@Sun.com">Sunitha Reddy</a>
* @author Sunitha Reddy
*/
public final class StAXValidatorHelper implements ValidatorHelper {
private static final String DEFAULT_TRANSFORMER_IMPL = "com.sun.org.apache.xalan.internal.xsltc.trax.TransformerFactoryImpl";

View File

@ -50,7 +50,7 @@ import org.xml.sax.SAXException;
* A validator helper for <code>StreamSource</code>s.</p>
*
* @author Michael Glavassevich, IBM
* @author <a href="mailto:Sunitha.Reddy@Sun.com">Sunitha Reddy</a>
* @author Sunitha Reddy
*/
final class StreamValidatorHelper implements ValidatorHelper {

View File

@ -32,7 +32,7 @@ import org.xml.sax.SAXParseException;
/**
* <p>Static utility methods for the Validation API implementation.</p>
*
* @author Kohsuke Kawaguchi (kohsuke.kawaguchi@sun.com)
* @author Kohsuke Kawaguchi
*/
final class Util {

View File

@ -91,7 +91,7 @@ import org.xml.sax.ext.EntityResolver2;
* <p>Implementation of ValidatorHandler for W3C XML Schemas and
* also a validator helper for <code>SAXSource</code>s.</p>
*
* @author Kohsuke Kawaguchi (kohsuke.kawaguchi@sun.com)
* @author Kohsuke Kawaguchi
* @author Michael Glavassevich, IBM
*
* @LastModified: Oct 2017

View File

@ -46,9 +46,9 @@ import org.xml.sax.SAXNotSupportedException;
/**
* <p>Implementation of Validator for W3C XML Schemas.</p>
*
* @author <a href="mailto:Kohsuke.Kawaguchi@Sun.com">Kohsuke Kawaguchi</a>
* @author Kohsuke Kawaguchi
* @author Michael Glavassevich, IBM
* @author <a href="mailto:Sunitha.Reddy@Sun.com">Sunitha Reddy</a>
* @author Sunitha Reddy
*/
final class ValidatorImpl extends Validator implements PSVIProvider {

View File

@ -36,7 +36,7 @@ import org.xml.sax.SAXException;
* kind of SAXException tunneling.
*
* @author
* Kohsuke Kawaguchi (kohsuke.kawaguchi@sun.com)
* Kohsuke Kawaguchi
*
* @LastModified: Oct 2017
*/

View File

@ -64,7 +64,7 @@ import org.xml.sax.SAXParseException;
/**
* {@link SchemaFactory} for XML Schema.
*
* @author Kohsuke Kawaguchi (kohsuke.kawaguchi@sun.com)
* @author Kohsuke Kawaguchi
*/
public final class XMLSchemaFactory extends SchemaFactory {

View File

@ -29,7 +29,7 @@ import org.xml.sax.SAXParseException;
* {@link ErrorHandler} that throws all errors and fatal errors.
*
* @author
* Kohsuke Kawaguchi (kohsuke.kawaguchi@sun.com)
* Kohsuke Kawaguchi
*/
public class DraconianErrorHandler implements ErrorHandler {
/**

View File

@ -40,7 +40,7 @@ import org.xml.sax.SAXParseException;
* rather than copying it into every component that needs an error handler
* and update all of them whenever it is changed, IMO.
*
* @author Kohsuke Kawaguchi (kohsuke.kawaguchi@sun.com)
* @author Kohsuke Kawaguchi
*
*/
public abstract class ErrorHandlerProxy implements ErrorHandler {

View File

@ -28,7 +28,7 @@ import org.xml.sax.Locator;
* Wraps SAX {@link Locator} into Xerces {@link XMLLocator}.
*
* @author
* Kohsuke Kawaguchi (kohsuke.kawaguchi@sun.com)
* Kohsuke Kawaguchi
*/
public class LocatorWrapper implements XMLLocator {

View File

@ -39,8 +39,8 @@ import javax.xml.namespace.NamespaceContext;
* can be exposed to the application, we must intern all Strings before
* calling NamespaceSupport methods.
*
* @author Neeraj Bajaj, Sun Microsystems, inc.
* @author Santiago.PericasGeertsen@sun.com
* @author Neeraj Bajaj
* @author Santiago PericasGeertsen
*
*/
public class NamespaceContextWrapper implements NamespaceContext {

View File

@ -39,7 +39,7 @@ import org.xml.sax.SAXException;
* and produces the equivalent {@link XMLDocumentHandler} events.
*
* @author
* Kohsuke Kawaguchi (kohsuke.kawaguchi@sun.com)
* Kohsuke Kawaguchi
*/
public class SAX2XNI implements ContentHandler, XMLDocumentSource {
public SAX2XNI( XMLDocumentHandler core ) {

View File

@ -37,7 +37,7 @@ import com.sun.org.apache.xerces.internal.xni.parser.XMLDocumentSource;
*
*
* @author
* Kohsuke Kawaguchi (kohsuke.kawaguchi@sun.com)
* Kohsuke Kawaguchi
*/
public class TeeXMLDocumentFilterImpl implements XMLDocumentFilter {
/**

View File

@ -42,7 +42,7 @@ import com.sun.org.apache.xerces.internal.xni.parser.XMLDocumentSource;
* {@link XMLDocumentFilter}s.
*
* @author
* Kohsuke Kawaguchi (kohsuke.kawaguchi@sun.com)
* Kohsuke Kawaguchi
*/
public class XMLDocumentFilterImpl implements XMLDocumentFilter {
private XMLDocumentHandler next;

View File

@ -41,7 +41,7 @@ import com.sun.org.apache.xerces.internal.xni.parser.XMLInputSource;
* get rid of this awkward adaptor class.
*
* @author
* Kohsuke Kawaguchi (kohsuke.kawaguchi@sun.com)
* Kohsuke Kawaguchi
*/
public final class XMLInputSourceAdaptor implements Source {
/**

View File

@ -118,9 +118,9 @@ import org.xml.sax.ext.LexicalHandler;
*
*
* @author <a href="mailto:arkin@intalio.com">Assaf Arkin</a>
* @author <a href="mailto:rahul.srivastava@sun.com">Rahul Srivastava</a>
* @author Rahul Srivastava
* @author Elena Litani, IBM
* @author Sunitha Reddy, Sun Microsystems
* @author Sunitha Reddy
* @see Serializer
* @see org.w3c.dom.ls.LSSerializer
*

View File

@ -74,7 +74,7 @@ import org.xml.sax.SAXException;
* spaces at beginning of line will be stripped.
*
* @author <a href="mailto:arkin@intalio.com">Assaf Arkin</a>
* @author <a href="mailto:rahul.srivastava@sun.com">Rahul Srivastava</a>
* @author Rahul Srivastava
* @author Elena Litani IBM
* @see Serializer
*

View File

@ -83,7 +83,7 @@ import org.xml.sax.helpers.AttributesImpl;
* spaces at beginning of line will be stripped.
*
* @author <a href="mailto:arkin@intalio.com">Assaf Arkin</a>
* @author <a href="mailto:rahul.srivastava@sun.com">Rahul Srivastava</a>
* @author Rahul Srivastava
* @author Elena Litani IBM
* @see Serializer
*

View File

@ -36,7 +36,7 @@ import jdk.xml.internal.JdkXmlFeatures;
/**
*
* @author Ramesh Mandava ( ramesh.mandava@sun.com )
* @author Ramesh Mandava
* @LastModified: Nov 2017
*/
public class JAXPExtensionsProvider implements ExtensionsProvider {

View File

@ -37,7 +37,7 @@ import com.sun.org.apache.xalan.internal.res.XSLMessages;
* Overrides {@link VariableStack} and delegates the call to
* {@link javax.xml.xpath.XPathVariableResolver}.
*
* @author Ramesh Mandava ( ramesh.mandava@sun.com )
* @author Ramesh Mandava
*/
public class JAXPVariableStack extends VariableStack {

View File

@ -29,8 +29,8 @@ package com.sun.xml.internal.stream;
* XMLBufferListerner should be implemented by classes which wish to receive
* call backs from XMLEntityReader.
*
* @author k.venugopal@sun.com,
* @author Neeraj.bajaj@sun.com
* @author k venugopal,
* @author Neeraj bajaj
*/
public interface XMLBufferListener {

View File

@ -48,7 +48,7 @@ import com.sun.xml.internal.stream.writers.XMLStreamWriterImpl;
* This class provides the implementation of XMLOutputFactory.
*
* @author Neeraj Bajaj,
* @author k.venugopal@sun.com
* @author k venugopal
*/
public class XMLOutputFactoryImpl extends XMLOutputFactory {

View File

@ -30,7 +30,7 @@ import javax.xml.stream.Location;
/**
*Implementation of Location interface to be used by
*event readers.
*@author Neeraj.bajaj@sun.com,k.venugopal@sun.com
*@author Neeraj bajaj,k venugopal
*/
public class LocationImpl implements Location{
String systemId;

View File

@ -32,7 +32,7 @@ import javax.xml.namespace.QName;
import javax.xml.XMLConstants;
/**
*
* @author Neeraj Bajaj,K.Venugopal@sun.com Sun Microsystems.
* @author Neeraj Bajaj,K Venugopal
*/
public class NamespaceImpl extends AttributeImpl implements Namespace{

View File

@ -32,7 +32,7 @@ import com.sun.xml.internal.stream.dtd.nonvalidating.XMLNotationDecl;
/**
* Implementation of NotationDeclaration event.
*
* @author k.venugopal@sun.com
* @author k venugopal
*/
public class NotationDeclarationImpl extends DummyEvent implements NotationDeclaration {

View File

@ -38,7 +38,7 @@ import javax.xml.stream.util.XMLEventConsumer;
/**
* Implementation of XMLEvent Allocator.
*
* @author Neeraj.bajaj@sun.com, k.venugopal@sun.com
* @author Neeraj bajaj, k venugopal
*/
public class XMLEventAllocatorImpl implements XMLEventAllocator {

View File

@ -42,7 +42,7 @@ import javax.xml.stream.events.StartElement;
/**
*
* @author Neeraj Bajaj, k.venugopal@sun.com
* @author Neeraj Bajaj, k venugopal
*/
public class XMLEventFactoryImpl extends XMLEventFactory {

View File

@ -31,8 +31,8 @@ import java.lang.ref.*;
* Buffer allocator for buffers of sizes 128 B, 2 KB and 8 KB. Includes
* methods for allocating and freeing buffers.
*
* @author Binu.John@sun.com
* @author Santiago.PericasGeertsen@sun.com
* @author Binu John
* @author Santiago PericasGeertsen
*/
public class BufferAllocator {
private static final int SMALL_SIZE_LIMIT = 128;

View File

@ -35,8 +35,8 @@ import java.lang.ref.*;
* The local storage is activated on the return of the buffer.
* The buffer returns null if it is already allocated.
*
* @author Binu.John@sun.com
* @author Santiago.PericasGeertsen@sun.com
* @author Binu John
* @author Santiago PericasGeertsen
*/
public class ThreadLocalBufferAllocator {
private static ThreadLocal<SoftReference<BufferAllocator>> tlba = new ThreadLocal<>();

View File

@ -42,7 +42,7 @@ import com.sun.org.apache.xerces.internal.util.XMLChar;
* of <code>java.io.BufferedWriter</code> has been shown to be very
* expensive in JAX-WS.</p>
*
* @author Santiago.PericasGeertsen@sun.com
* @author Santiago PericasGeertsen
*/
public final class UTF8OutputStreamWriter extends Writer {

View File

@ -47,7 +47,7 @@ import org.xml.sax.helpers.NamespaceSupport;
/**
* This class provides support to build a DOM tree using XMLStreamWriter API's.
* @author K.Venugopal@sun.com
* @author K Venugopal
*/
/*

View File

@ -64,8 +64,8 @@ import jdk.xml.internal.SecuritySupport;
*
* @author Neeraj Bajaj
* @author K.Venugopal
* @author Santiago.Pericas-Geertsen@sun.com
* @author Sunitha.Reddy@sun.com
* @author Santiago Pericas-Geertsen
* @author Sunitha Reddy
*/
public final class XMLStreamWriterImpl extends AbstractMap<Object, Object>
implements XMLStreamWriterBase {
@ -2041,7 +2041,6 @@ public final class XMLStreamWriterImpl extends AbstractMap<Object, Object>
* we dont need to set the value for every end element we encouter.
* For Well formedness checks we can have the same QName object that was pushed.
* the values will be set only if application need to know about the endElement
* -- neeraj.bajaj@sun.com
*/
public ElementState peek() {
return fElements[fDepth - 1];

View File

@ -28,7 +28,7 @@ package javax.xml;
/**
* <p>Utility class to contain basic XML values as constants.
*
* @author <a href="mailto:Jeff.Suttor@Sun.com">Jeff Suttor</a>
* @author Jeff Suttor
* @see <a href="http://www.w3.org/TR/xml11/">Extensible Markup Language (XML) 1.1</a>
* @see <a href="http://www.w3.org/TR/REC-xml">Extensible Markup Language (XML) 1.0 (Second Edition)</a>
* @see <a href="http://www.w3.org/XML/xml-V10-2e-errata">XML 1.0 Second Edition Specification Errata</a>

View File

@ -28,7 +28,7 @@ package javax.xml.datatype;
/**
* <p>Indicates a serious configuration error.</p>
*
* @author <a href="mailto:Jeff.Suttor@Sun.com">Jeff Suttor</a>
* @author Jeff Suttor
* @since 1.5
*/

View File

@ -31,7 +31,7 @@ import javax.xml.namespace.QName;
/**
* <p>Utility class to contain basic Datatype values as constants.</p>
*
* @author <a href="mailto:Jeff.Suttor@Sun.com">Jeff Suttor</a>
* @author Jeff Suttor
* @since 1.5
*/

View File

@ -80,9 +80,9 @@ import com.sun.org.apache.xerces.internal.jaxp.datatype.DatatypeFactoryImpl;
* </li>
* </ol>
*
* @author <a href="mailto:Joseph.Fialli@Sun.COM">Joseph Fialli</a>
* @author <a href="mailto:Jeff.Suttor@Sun.com">Jeff Suttor</a>
* @author <a href="mailto:Neeraj.Bajaj@sun.com">Neeraj Bajaj</a>
* @author Joseph Fialli
* @author Jeff Suttor
* @author Neeraj Bajaj
*
* @since 1.5
*/

View File

@ -89,10 +89,10 @@ import javax.xml.namespace.QName;
* some of the methods may not work correctly on such {@code Duration}s.
* The impacted methods document their dependency on {@link Calendar}.
*
* @author <a href="mailto:Joseph.Fialli@Sun.COM">Joseph Fialli</a>
* @author <a href="mailto:Kohsuke.Kawaguchi@Sun.com">Kohsuke Kawaguchi</a>
* @author <a href="mailto:Jeff.Suttor@Sun.com">Jeff Suttor</a>
* @author <a href="mailto:Sunitha.Reddy@Sun.com">Sunitha Reddy</a>
* @author Joseph Fialli
* @author Kohsuke Kawaguchi
* @author Jeff Suttor
* @author Sunitha Reddy
* @see XMLGregorianCalendar#add(Duration)
* @since 1.5
*/

View File

@ -41,7 +41,7 @@ import jdk.xml.internal.SecuritySupport;
* <p>This class is duplicated for each JAXP subpackage so keep it in
* sync. It is package private for secure class loading.</p>
*
* @author Santiago.PericasGeertsen@sun.com
* @author Santiago PericasGeertsen
*/
class FactoryFinder {
private static final String DEFAULT_PACKAGE = "com.sun.org.apache.xerces.internal";

View File

@ -165,10 +165,10 @@ import java.util.GregorianCalendar;
* </li>
* </ul>
*
* @author <a href="mailto:Joseph.Fialli@Sun.com">Joseph Fialli</a>
* @author <a href="mailto:Kohsuke.Kawaguchi@Sun.com">Kohsuke Kawaguchi</a>
* @author <a href="mailto:Jeff.Suttor@Sun.com">Jeff Suttor</a>
* @author <a href="mailto:Sunitha.Reddy@Sun.com">Sunitha Reddy</a>
* @author Joseph Fialli
* @author Kohsuke Kawaguchi
* @author Jeff Suttor
* @author Sunitha Reddy
* @see Duration
* @see DatatypeFactory
* @since 1.5

View File

@ -149,7 +149,7 @@
* <li>xs:unsignedShort</li>
* </ul>
*
* @author <a href="mailto:Jeff.Suttor@Sun.com">Jeff Suttor</a>
* @author Jeff Suttor
* @see <a href="http://www.w3.org/TR/xmlschema-2/#dateTime">
* W3C XML Schema 1.0 Part 2, Section 3.2.7-14</a>
* @see <a href="http://www.w3.org/TR/xpath-datamodel#dt-dayTimeDuration">

View File

@ -67,7 +67,7 @@ import java.util.Iterator;
* <p>A prefix can only be bound to a <strong>single</strong>
* Namespace URI in the current scope.
*
* @author <a href="mailto:Jeff.Suttor@Sun.com">Jeff Suttor</a>
* @author Jeff Suttor
* @see javax.xml.XMLConstants
* javax.xml.XMLConstants for declarations of common XML values
* @see <a href="http://www.w3.org/TR/xmlschema-2/#QName">

View File

@ -59,7 +59,7 @@ import jdk.xml.internal.SecuritySupport;
*
* <p><code>QName</code> is immutable.</p>
*
* @author <a href="mailto:Jeff.Suttor@Sun.com">Jeff Suttor</a>
* @author Jeff Suttor
* @see <a href="http://www.w3.org/TR/xmlschema-2/#QName">
* XML Schema Part2: Datatypes specification</a>
* @see <a href="http://www.w3.org/TR/REC-xml-names/#ns-qualnames">

View File

@ -56,7 +56,7 @@ import org.xml.sax.SAXException;
* <code>Document</code>. It merely requires that the implementation
* communicate with the application using these existing APIs.
*
* @author <a href="mailto:Jeff.Suttor@Sun.com">Jeff Suttor</a>
* @author Jeff Suttor
* @since 1.4
*/

View File

@ -32,8 +32,8 @@ import javax.xml.validation.Schema;
* Defines a factory API that enables applications to obtain a
* parser that produces DOM object trees from XML documents.
*
* @author <a href="mailto:Jeff.Suttor@Sun.com">Jeff Suttor</a>
* @author <a href="mailto:Neeraj.Bajaj@sun.com">Neeraj Bajaj</a>
* @author Jeff Suttor
* @author Neeraj Bajaj
*
* @since 1.4
*/

View File

@ -31,7 +31,7 @@ package javax.xml.parsers;
* parser factory specified in the system properties cannot be found
* or instantiated.
*
* @author <a href="mailto:Jeff.Suttor@Sun.com">Jeff Suttor</a>
* @author Jeff Suttor
* @since 1.4
*/

View File

@ -41,8 +41,7 @@ import jdk.xml.internal.SecuritySupport;
* <p>This class is duplicated for each JAXP subpackage so keep it in
* sync. It is package private for secure class loading.</p>
*
* @author Santiago.PericasGeertsen@sun.com
* @author Huizhe.Wang@oracle.com
* @author Santiago PericasGeertsen
*/
class FactoryFinder {
private static final String DEFAULT_PACKAGE = "com.sun.org.apache.xerces.internal";

View File

@ -28,7 +28,7 @@ package javax.xml.parsers;
/**
* Indicates a serious configuration error.
*
* @author <a href="mailto:Jeff.Suttor@Sun.com">Jeff Suttor</a>
* @author Jeff Suttor
* @since 1.4
*/

View File

@ -74,7 +74,7 @@ import org.xml.sax.helpers.DefaultHandler;
* class to initially adapt their SAX1 implementation to work under
* this revised class.
*
* @author <a href="mailto:Jeff.Suttor@Sun.com">Jeff Suttor</a>
* @author Jeff Suttor
* @since 1.4
*/
@SuppressWarnings("deprecation")

View File

@ -35,8 +35,8 @@ import org.xml.sax.SAXNotSupportedException;
* Defines a factory API that enables applications to configure and
* obtain a SAX based parser to parse XML documents.
*
* @author <a href="mailto:Jeff.Suttor@Sun.com">Jeff Suttor</a>
* @author <a href="mailto:Neeraj.Bajaj@sun.com">Neeraj Bajaj</a>
* @author Jeff Suttor
* @author Neeraj Bajaj
*
* @since 1.4
*/

View File

@ -41,7 +41,7 @@ import jdk.xml.internal.SecuritySupport;
* <p>This class is duplicated for each JAXP subpackage so keep it in
* sync. It is package private for secure class loading.</p>
*
* @author Santiago.PericasGeertsen@sun.com
* @author Santiago PericasGeertsen
*/
class FactoryFinder {
// Check we have access to package.

View File

@ -43,8 +43,7 @@ import jdk.xml.internal.SecuritySupport;
* <p>This class is duplicated for each JAXP subpackage so keep it in
* sync. It is package private for secure class loading.</p>
*
* @author Santiago.PericasGeertsen@sun.com
* @author Huizhe.Wang@oracle.com
* @author Santiago PericasGeertsen
*/
class FactoryFinder {
private static final String DEFAULT_PACKAGE = "com.sun.org.apache.xalan.internal.";

View File

@ -29,7 +29,7 @@ package javax.xml.transform;
* <p>An object that implements this interface contains the information
* needed to build a transformation result tree.
*
* @author <a href="Jeff.Suttor@Sun.com">Jeff Suttor</a>
* @author Jeff Suttor
* @since 1.4
*/
public interface Result {

View File

@ -44,7 +44,7 @@ import java.util.Properties;
* <p>A <code>Transformer</code> may be used multiple times. Parameters and
* output properties are preserved across transformations.</p>
*
* @author <a href="Jeff.Suttor@Sun.com">Jeff Suttor</a>
* @author Jeff Suttor
* @since 1.4
*/
public abstract class Transformer {

View File

@ -38,8 +38,8 @@ import com.sun.org.apache.xalan.internal.xsltc.trax.TransformerFactoryImpl;
* {@code TransformerFactory} abstract class. If the property is not
* defined, a platform default is be used.
*
* @author <a href="mailto:Jeff.Suttor@Sun.com">Jeff Suttor</a>
* @author <a href="mailto:Neeraj.Bajaj@sun.com">Neeraj Bajaj</a>
* @author Jeff Suttor
* @author Neeraj Bajaj
*
* @since 1.5
*/

View File

@ -36,7 +36,7 @@ import org.w3c.dom.Node;
* a Document node as the holder for the result of the transformation,
* which may be retrieved with {@link #getNode()}.
*
* @author <a href="Jeff.Suttor@Sun.com">Jeff Suttor</a>
* @author Jeff Suttor
* @since 1.4
*/
public class DOMResult implements Result {

View File

@ -38,7 +38,7 @@ import org.w3c.dom.Node;
* Parsers can be made namespace aware by calling
* {@link javax.xml.parsers.DocumentBuilderFactory#setNamespaceAware(boolean awareness)}.</p>
*
* @author <a href="Jeff.Suttor@Sun.com">Jeff Suttor</a>
* @author Jeff Suttor
* @see <a href="http://www.w3.org/TR/DOM-Level-2">Document Object Model (DOM) Level 2 Specification</a>
* @since 1.4
*/

View File

@ -36,7 +36,7 @@ questions.
<meta name="CVS"
content="$Id: overview.html,v 1.2 2005/06/10 03:50:39 jeffsuttor Exp $" />
<meta name="AUTHOR"
content="Jeff.Suttor@Sun.com" />
content="Jeff Suttor" />
</head>
<body>

View File

@ -33,7 +33,7 @@ import org.xml.sax.ext.LexicalHandler;
/**
* <p>Acts as an holder for a transformation Result.</p>
*
* @author <a href="Jeff.Suttor@Sun.com">Jeff Suttor</a>
* @author Jeff Suttor
* @since 1.4
*/
public class SAXResult implements Result {

View File

@ -40,7 +40,7 @@ import org.xml.sax.XMLReader;
* Parsers can be made namespace aware by calling the
* {@link javax.xml.parsers.SAXParserFactory#setNamespaceAware(boolean awareness)} method.</p>
*
* @author <a href="mailto:Jeff.Suttor@Sun.com">Jeff Suttor</a>
* @author Jeff Suttor
* @since 1.4
*/
public class SAXSource implements Source {

View File

@ -38,8 +38,8 @@ import javax.xml.transform.Result;
* {@link javax.xml.validation.Validator} which accept
* <code>Result</code> as input.
*
* @author <a href="mailto:Neeraj.Bajaj@Sun.com">Neeraj Bajaj</a>
* @author <a href="mailto:Jeff.Suttor@Sun.com">Jeff Suttor</a>
* @author Neeraj Bajaj
* @author Jeff Suttor
*
* @see <a href="http://jcp.org/en/jsr/detail?id=173">
* JSR 173: Streaming API for XML</a>

View File

@ -44,8 +44,8 @@ import javax.xml.transform.Source;
* <p><code>StAXSource</code>s are consumed during processing
* and are not reusable.</p>
*
* @author <a href="mailto:Neeraj.Bajaj@Sun.com">Neeraj Bajaj</a>
* @author <a href="mailto:Jeff.Suttor@Sun.com">Jeff Suttor</a>
* @author Neeraj Bajaj
* @author Jeff Suttor
*
* @see <a href="http://jcp.org/en/jsr/detail?id=173">
* JSR 173: Streaming API for XML</a>

View File

@ -36,7 +36,7 @@ import java.net.MalformedURLException;
* <p>Acts as an holder for a transformation result,
* which may be XML, plain Text, HTML, or some other form of markup.</p>
*
* @author <a href="Jeff.Suttor@Sun.com">Jeff Suttor</a>
* @author Jeff Suttor
* @since 1.4
*/
public class StreamResult implements Result {

View File

@ -40,7 +40,7 @@ import javax.xml.transform.Source;
* <p><em>Note:</em> Due to their internal use of either a {@link Reader} or {@link InputStream} instance,
* <code>StreamSource</code> instances may only be used once.</p>
*
* @author <a href="Jeff.Suttor@Sun.com">Jeff Suttor</a>
* @author Jeff Suttor
* @since 1.4
*/
public class StreamSource implements Source {

View File

@ -58,7 +58,7 @@ package javax.xml.validation;
* In other words, if you parse the same schema twice, you may
* still get <code>!schemaA.equals(schemaB)</code>.
*
* @author <a href="mailto:Kohsuke.Kawaguchi@Sun.com">Kohsuke Kawaguchi</a>
* @author Kohsuke Kawaguchi
* @see <a href="http://www.w3.org/TR/xmlschema-1/">XML Schema Part 1: Structures</a>
* @see <a href="http://www.w3.org/TR/xml11/">Extensible Markup Language (XML) 1.1</a>
* @see <a href="http://www.w3.org/TR/REC-xml">Extensible Markup Language (XML) 1.0 (Second Edition)</a>

View File

@ -105,8 +105,8 @@ import org.xml.sax.SAXParseException;
* </tbody>
* </table>
*
* @author <a href="mailto:Kohsuke.Kawaguchi@Sun.com">Kohsuke Kawaguchi</a>
* @author <a href="mailto:Neeraj.Bajaj@sun.com">Neeraj Bajaj</a>
* @author Kohsuke Kawaguchi
* @author Neeraj Bajaj
*
* @since 1.5
*/

View File

@ -41,7 +41,7 @@ import jdk.xml.internal.SecuritySupport;
/**
* Implementation of {@link SchemaFactory#newInstance(String)}.
*
* @author <a href="Kohsuke.Kawaguchi@Sun.com">Kohsuke Kawaguchi</a>
* @author Kohsuke Kawaguchi
* @since 1.5
*/
class SchemaFactoryFinder {

View File

@ -40,7 +40,7 @@ package javax.xml.validation;
* It must not be used by users or JAXP implementations.
* </p>
*
* @author <a href="Kohsuke.Kawaguchi@Sun.com">Kohsuke Kawaguchi</a>
* @author Kohsuke Kawaguchi
* @since 1.5
*/
public abstract class SchemaFactoryLoader {

View File

@ -41,7 +41,7 @@ import org.w3c.dom.TypeInfo;
* Implementation of this "interface" can be obtained through the
* {@link ValidatorHandler#getTypeInfoProvider()} method.
*
* @author <a href="mailto:Kohsuke.Kawaguchi@Sun.com">Kohsuke Kawaguchi</a>
* @author Kohsuke Kawaguchi
* @see org.w3c.dom.TypeInfo
* @since 1.5
*/

View File

@ -48,7 +48,7 @@ import org.xml.sax.SAXNotSupportedException;
* the {@code validate} method.
*
*
* @author <a href="mailto:Kohsuke.Kawaguchi@Sun.com">Kohsuke Kawaguchi</a>
* @author Kohsuke Kawaguchi
* @since 1.5
*/
public abstract class Validator {

View File

@ -107,7 +107,7 @@ import org.xml.sax.SAXNotSupportedException;
*
* <p>This feature is set to <code>false</code> by default.</p>
*
* @author <a href="mailto:Kohsuke.Kawaguchi@Sun.com">Kohsuke Kawaguchi</a>
* @author Kohsuke Kawaguchi
* @since 1.5
*/
public abstract class ValidatorHandler implements ContentHandler {

View File

@ -98,8 +98,8 @@ import org.xml.sax.InputSource;
* method is invoked, applications may not recursively call
* the {@code evaluate} method.
*
* @author <a href="Norman.Walsh@Sun.com">Norman Walsh</a>
* @author <a href="Jeff.Suttor@Sun.com">Jeff Suttor</a>
* @author Norman Walsh
* @author Jeff Suttor
* @see <a href="http://www.w3.org/TR/xpath">XML Path Language (XPath) Version 1.0</a>
* @since 1.5
*/

View File

@ -30,8 +30,8 @@ import javax.xml.namespace.QName;
/**
* <p>XPath constants.</p>
*
* @author <a href="mailto:Norman.Walsh@Sun.COM">Norman Walsh</a>
* @author <a href="mailto:Jeff.Suttor@Sun.COM">Jeff Suttor</a>
* @author Norman Walsh
* @author Jeff Suttor
* @see <a href="http://www.w3.org/TR/xpath">XML Path Language (XPath) Version 1.0</a>
* @since 1.5
*/

View File

@ -35,8 +35,8 @@ import java.io.InvalidClassException;
/**
* {@code XPathException} represents a generic XPath exception.
*
* @author <a href="Norman.Walsh@Sun.com">Norman Walsh</a>
* @author <a href="mailto:Jeff.Suttor@Sun.COM">Jeff Suttor</a>
* @author Norman Walsh
* @author Jeff Suttor
* @since 1.5
*/
public class XPathException extends Exception {

View File

@ -94,8 +94,8 @@ import org.xml.sax.InputSource;
* method is invoked, applications may not recursively call
* the {@code evaluate} method.
*
* @author <a href="mailto:Norman.Walsh@Sun.com">Norman Walsh</a>
* @author <a href="mailto:Jeff.Suttor@Sun.com">Jeff Suttor</a>
* @author Norman Walsh
* @author Jeff Suttor
* @see <a href="http://www.w3.org/TR/xpath#section-Expressions">XML Path Language (XPath) Version 1.0, Expressions</a>
* @since 1.5
*/

View File

@ -28,8 +28,8 @@ package javax.xml.xpath;
/**
* {@code XPathExpressionException} represents an error in an XPath expression.
*
* @author <a href="mailto:Norman.Walsh@Sun.com">Norman Walsh</a>
* @author <a href="mailto:Jeff.Suttor@Sun.com">Jeff Suttor</a>
* @author Norman Walsh
* @author Jeff Suttor
* @since 1.5
*/
public class XPathExpressionException extends XPathException {

View File

@ -45,8 +45,8 @@ import jdk.xml.internal.SecuritySupport;
* may not attempt to recursively invoke a <code>newInstance</code> method,
* even from the same thread.
*
* @author <a href="mailto:Norman.Walsh@Sun.com">Norman Walsh</a>
* @author <a href="mailto:Jeff.Suttor@Sun.com">Jeff Suttor</a>
* @author Norman Walsh
* @author Jeff Suttor
*
* @since 1.5
*/

View File

@ -29,8 +29,8 @@ package javax.xml.xpath;
* {@code XPathFactoryConfigurationException} represents
* a configuration error in a {@code XPathFactory} environment.
*
* @author <a href="mailto:Norman.Walsh@Sun.com">Norman Walsh</a>
* @author <a href="mailto:Jeff.Suttor@Sun.com">Jeff Suttor</a>
* @author Norman Walsh
* @author Jeff Suttor
* @since 1.5
*/
public class XPathFactoryConfigurationException extends XPathException {

View File

@ -41,7 +41,7 @@ import jdk.xml.internal.SecuritySupport;
/**
* Implementation of {@link XPathFactory#newInstance(String)}.
*
* @author <a href="Kohsuke.Kawaguchi@Sun.com">Kohsuke Kawaguchi</a>
* @author Kohsuke Kawaguchi
* @since 1.5
*/
class XPathFactoryFinder {

View File

@ -32,8 +32,8 @@ import java.util.List;
*
* <p>Functions are identified by QName and arity in XPath.</p>
*
* @author <a href="mailto:Norman.Walsh@Sun.com">Norman Walsh</a>
* @author <a href="mailto:Jeff.Suttor@Sun.com">Jeff Suttor</a>
* @author Norman Walsh
* @author Jeff Suttor
* @since 1.5
*/
public interface XPathFunction {

View File

@ -28,8 +28,8 @@ package javax.xml.xpath;
/**
* {@code XPathFunctionException} represents an error with an XPath function.
*
* @author <a href="mailto:Norman.Walsh@Sun.com">Norman Walsh</a>
* @author <a href="mailto:Jeff.Suttor@Sun.com">Jeff Suttor</a>
* @author Norman Walsh
* @author Jeff Suttor
* @since 1.5
*/
public class XPathFunctionException extends XPathExpressionException {

View File

@ -44,8 +44,8 @@ import javax.xml.namespace.QName;
* <p>If you wish to implement additional built-in functions, you will have to
* extend the underlying implementation directly.</p>
*
* @author <a href="mailto:Norman.Walsh@Sun.com">Norman Walsh</a>
* @author <a href="mailto:Jeff.Suttor@Sun.com">Jeff Suttor</a>
* @author Norman Walsh
* @author Jeff Suttor
* @see <a href="http://www.w3.org/TR/xpath#corelib">XML Path Language (XPath) Version 1.0, Core Function Library</a>
* @since 1.5
*/

View File

@ -37,8 +37,8 @@ import javax.xml.namespace.QName;
* single XPath expression, a variable's value <strong><em>must</em></strong>
* not change.</p>
*
* @author <a href="mailto:Norman.Walsh@Sun.com">Norman Walsh</a>
* @author <a href="mailto:Jeff.Suttor@Sun.com">Jeff Suttor</a>
* @author Norman Walsh
* @author Jeff Suttor
* @since 1.5
*/
public interface XPathVariableResolver {