jaxws/src/jdk.xml.bind/share/classes/com/sun/tools/internal/xjc/reader/dtd/bindinfo/BIElement.java
changeset 33547 e4c76ac38b12
parent 25871 b80b84e87032
equal deleted inserted replaced
33390:d131f4b8433a 33547:e4c76ac38b12
     1 /*
     1 /*
     2  * Copyright (c) 1997, 2012, Oracle and/or its affiliates. All rights reserved.
     2  * Copyright (c) 1997, 2015, Oracle and/or its affiliates. All rights reserved.
     3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
     3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
     4  *
     4  *
     5  * This code is free software; you can redistribute it and/or modify it
     5  * This code is free software; you can redistribute it and/or modify it
     6  * under the terms of the GNU General Public License version 2 only, as
     6  * under the terms of the GNU General Public License version 2 only, as
     7  * published by the Free Software Foundation.  Oracle designates this
     7  * published by the Free Software Foundation.  Oracle designates this
    38 import org.w3c.dom.Element;
    38 import org.w3c.dom.Element;
    39 import org.xml.sax.Locator;
    39 import org.xml.sax.Locator;
    40 
    40 
    41 
    41 
    42 /**
    42 /**
    43  * <element> declaration in the binding file.
    43  * {@code <element>} declaration in the binding file.
    44  */
    44  */
    45 public final class BIElement
    45 public final class BIElement
    46 {
    46 {
    47     /**
    47     /**
    48      * Wraps a given &lt;element> element in the binding file.
    48      * Wraps a given {@code <element>} element in the binding file.
    49      *
    49      *
    50      * <p>
    50      * <p>
    51      * Should be created only from {@link BindInfo}.
    51      * Should be created only from {@link BindInfo}.
    52      */
    52      */
    53     BIElement( BindInfo bi, Element _e ) {
    53     BIElement( BindInfo bi, Element _e ) {
   120 
   120 
   121 
   121 
   122     /** The parent {@link BindInfo} object to which this object belongs. */
   122     /** The parent {@link BindInfo} object to which this object belongs. */
   123     final BindInfo parent;
   123     final BindInfo parent;
   124 
   124 
   125     /** &lt;element> element which this object is wrapping. */
   125     /** {@code <element>} element which this object is wrapping. */
   126     private final Element e;
   126     private final Element e;
   127 
   127 
   128     /**
   128     /**
   129      * The bean representation for this element.
   129      * The bean representation for this element.
   130      */
   130      */