--- old/src/jdk.xml.bind/share/classes/com/sun/xml/internal/xsom/parser/AnnotationParser.java 2015-10-16 13:00:03.000000000 +0200 +++ new/src/jdk.xml.bind/share/classes/com/sun/xml/internal/xsom/parser/AnnotationParser.java 2015-10-16 13:00:03.000000000 +0200 @@ -1,5 +1,5 @@ /* - * Copyright (c) 1997, 2012, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 1997, 2015, Oracle and/or its affiliates. All rights reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * This code is free software; you can redistribute it and/or modify it @@ -30,23 +30,23 @@ import org.xml.sax.ErrorHandler; /** - * Used to parse <xs:annotation>. + * Used to parse {@code }. * * @author Kohsuke Kawaguchi (kohsuke.kawaguchi@sun.com) */ public abstract class AnnotationParser { /** - * Called every time a new <xs:annotation> element + * Called every time a new {@code } element * is found. * - * The sub-tree rooted at <xs:annotation> will be + * The sub-tree rooted at {@code } will be * sent to this ContentHandler as if it is a whole document. * * @param context * indicates the schema component that owns this annotation. * Always non-null. * @param parentElementName - * local name of the element that contains <xs:annotation>. + * local name of the element that contains {@code }. * (e.g., "element", "attribute", ... ) * @param errorHandler * The error handler that the client application specifies. @@ -70,7 +70,7 @@ * @param existing * An annotation object which was returned from another * AnnotationParser before. Sometimes, one schema component - * can have multiple <:xs:annotation> elements and + * can have multiple {@code } elements and * this parameter is used to merge all those annotations * together. If there is no existing object, null will be * passed.