Source code: org/apache/axis/encoding/XMLType.java
1 /*
2 * Copyright 2001-2004 The Apache Software Foundation.
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17 package org.apache.axis.encoding ;
18
19 /**
20 *
21 * @author Doug Davis (dug@us.ibm.com)
22 */
23
24 import org.apache.axis.Constants;
25
26 import javax.xml.namespace.QName;
27
28
29 public class XMLType extends Constants {
30
31 /** A "marker" XML type QName we use to indicate a void type. */
32 public static final QName AXIS_VOID = new QName(Constants.NS_URI_AXIS, "Void");
33
34 // public static QName XSD_DATE;
35 //
36 // static {
37 // if (Constants.NS_URI_CURRENT_SCHEMA_XSD.equals(Constants.NS_URI_1999_SCHEMA_XSD))
38 // XSD_DATE = Constants.XSD_DATE2;
39 // else if (Constants.NS_URI_CURRENT_SCHEMA_XSD.equals(Constants.NS_URI_2000_SCHEMA_XSD))
40 // XSD_DATE = Constants.XSD_DATE3;
41 // else
42 // XSD_DATE = Constants.XSD_DATE;
43 // }
44 }