src/share/jaxws_classes/com/sun/tools/internal/ws/processor/model/AbstractType.java

Thu, 31 Aug 2017 15:18:52 +0800

author
aoqi
date
Thu, 31 Aug 2017 15:18:52 +0800
changeset 637
9c07ef4934dd
parent 368
0989ad8c0860
parent 0
373ffda63c9a
permissions
-rw-r--r--

merge

     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
    23  * questions.
    24  */
    26 package com.sun.tools.internal.ws.processor.model;
    28 import com.sun.tools.internal.ws.processor.model.java.JavaType;
    30 import javax.xml.namespace.QName;
    31 import java.util.Collections;
    32 import java.util.HashMap;
    33 import java.util.Iterator;
    34 import java.util.Map;
    36 /**
    37  *
    38  * @author WS Development Team
    39  */
    40 public abstract class AbstractType {
    42     protected AbstractType() {}
    44     protected AbstractType(QName name) {
    45         this(name, null, null);
    46     }
    48     protected AbstractType(QName name, String version) {
    49         this(name, null, version);
    50     }
    52     protected AbstractType(QName name, JavaType javaType) {
    53         this(name, javaType, null);
    54     }
    56     protected AbstractType(QName name, JavaType javaType, String version) {
    57         this.name = name;
    58         this.javaType = javaType;
    59         this.version = version;
    60     }
    62     public QName getName() {
    63         return name;
    64     }
    66     public void setName(QName name) {
    67         this.name = name;
    68     }
    70     public JavaType getJavaType() {
    71         return javaType;
    72     }
    74     public void setJavaType(JavaType javaType) {
    75         this.javaType = javaType;
    76     }
    78     public String getVersion() {
    79         return version;
    80     }
    82     public void setVersion(String version) {
    83         this.version = version;
    84     }
    86     public boolean isNillable() {
    87         return false;
    88     }
    90     public boolean isSOAPType() {
    91         return false;
    92     }
    94     public boolean isLiteralType() {
    95         return false;
    96     }
    98     public Object getProperty(String key) {
    99         if (properties == null) {
   100             return null;
   101         }
   102         return properties.get(key);
   103     }
   105     public void setProperty(String key, Object value) {
   106         if (value == null) {
   107             removeProperty(key);
   108             return;
   109         }
   111         if (properties == null) {
   112             properties = new HashMap();
   113         }
   114         properties.put(key, value);
   115     }
   117     public void removeProperty(String key) {
   118         if (properties != null) {
   119             properties.remove(key);
   120         }
   121     }
   123     public Iterator getProperties() {
   124         if (properties == null) {
   125             return Collections.emptyList().iterator();
   126         } else {
   127             return properties.keySet().iterator();
   128         }
   129     }
   131     /* serialization */
   132     public Map getPropertiesMap() {
   133         return properties;
   134     }
   136     /* serialization */
   137     public void setPropertiesMap(Map m) {
   138         properties = m;
   139     }
   141     private QName name;
   142     private JavaType javaType;
   143     private String version = null;
   144     private Map properties;
   145 }

mercurial