< prev index next >

src/jdk.xml.bind/share/classes/com/sun/tools/internal/xjc/model/CReferencePropertyInfo.java

Print this page


   1 /*
   2  * Copyright (c) 1997, 2012, Oracle and/or its affiliates. All rights reserved.
   3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
   4  *
   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
   7  * published by the Free Software Foundation.  Oracle designates this
   8  * particular file as subject to the "Classpath" exception as provided
   9  * by Oracle in the LICENSE file that accompanied this code.
  10  *
  11  * This code is distributed in the hope that it will be useful, but WITHOUT
  12  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  13  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  14  * version 2 for more details (a copy is included in the LICENSE file that
  15  * accompanied this code).
  16  *
  17  * You should have received a copy of the GNU General Public License version
  18  * 2 along with this work; if not, write to the Free Software Foundation,
  19  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  20  *
  21  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  22  * or visit www.oracle.com if you need additional information or have any


 154 
 155     /**
 156      * Reference properties refer to elements, and none of the Java primitive type
 157      * maps to an element. Thus a reference property is always unboxable.
 158      */
 159     @Override
 160     public boolean isUnboxable() {
 161         return false;
 162     }
 163 
 164     // the same as above
 165     @Override
 166     public boolean isOptionalPrimitive() {
 167         return false;
 168     }
 169 
 170     public <V> V accept(CPropertyVisitor<V> visitor) {
 171         return visitor.onReference(this);
 172     }
 173 





 174     public CAdapter getAdapter() {
 175         return null;
 176     }
 177 
 178     public final PropertyKind kind() {
 179         return PropertyKind.REFERENCE;
 180     }
 181 
 182     /**
 183      * A reference property can never be ID/IDREF because they always point to
 184      * other element classes.
 185      */
 186     public ID id() {
 187         return ID.NONE;
 188     }
 189 
 190     public WildcardMode getWildcard() {
 191         return wildcard;
 192     }
 193 


   1 /*
   2  * Copyright (c) 1997, 2014, Oracle and/or its affiliates. All rights reserved.
   3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
   4  *
   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
   7  * published by the Free Software Foundation.  Oracle designates this
   8  * particular file as subject to the "Classpath" exception as provided
   9  * by Oracle in the LICENSE file that accompanied this code.
  10  *
  11  * This code is distributed in the hope that it will be useful, but WITHOUT
  12  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  13  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  14  * version 2 for more details (a copy is included in the LICENSE file that
  15  * accompanied this code).
  16  *
  17  * You should have received a copy of the GNU General Public License version
  18  * 2 along with this work; if not, write to the Free Software Foundation,
  19  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  20  *
  21  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  22  * or visit www.oracle.com if you need additional information or have any


 154 
 155     /**
 156      * Reference properties refer to elements, and none of the Java primitive type
 157      * maps to an element. Thus a reference property is always unboxable.
 158      */
 159     @Override
 160     public boolean isUnboxable() {
 161         return false;
 162     }
 163 
 164     // the same as above
 165     @Override
 166     public boolean isOptionalPrimitive() {
 167         return false;
 168     }
 169 
 170     public <V> V accept(CPropertyVisitor<V> visitor) {
 171         return visitor.onReference(this);
 172     }
 173 
 174     @Override
 175     public <R, P> R accept(CPropertyVisitor2<R, P> visitor, P p) {
 176         return visitor.visit(this, p);
 177     }
 178 
 179     public CAdapter getAdapter() {
 180         return null;
 181     }
 182 
 183     public final PropertyKind kind() {
 184         return PropertyKind.REFERENCE;
 185     }
 186 
 187     /**
 188      * A reference property can never be ID/IDREF because they always point to
 189      * other element classes.
 190      */
 191     public ID id() {
 192         return ID.NONE;
 193     }
 194 
 195     public WildcardMode getWildcard() {
 196         return wildcard;
 197     }
 198 


< prev index next >