1 /*
2 * Licensed to the Apache Software Foundation (ASF) under one
3 * or more contributor license agreements. See the NOTICE file
4 * distributed with this work for additional information
5 * regarding copyright ownership. The ASF licenses this file
6 * to you under the Apache License, Version 2.0 (the
7 * "License"); you may not use this file except in compliance
8 * with the License. You may obtain a copy of the License at
9 *
10 * http://www.apache.org/licenses/LICENSE-2.0
11 *
12 * Unless required by applicable law or agreed to in writing,
13 * software distributed under the License is distributed on an
14 * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
15 * KIND, either express or implied. See the License for the
16 * specific language governing permissions and limitations
17 * under the License.
18 */
19
20 package org.apache.ws.commons.schema;
21
22 import org.w3c.dom.NodeList;
23
24 /**
25 * Defines application specific information within an annotation.
26 * Represents the World Wide Web Consortium (W3C) appinfo element.
27 */
28
29 // Jan 24 2002 - Joni - Change the Node into NodeList
30
31
32 public class XmlSchemaAppInfo extends XmlSchemaObject {
33
34 /**
35 * Provides the source of the application information.
36 */
37 String source;
38
39 /**
40 * Returns an array of XmlNode that represents the document text markup.
41 */
42 NodeList markup;
43
44 /**
45 * Creates new XmlSchemaAppInfo
46 * The default constructor initializes all fields to their default values.
47 */
48 public XmlSchemaAppInfo() {
49 }
50
51 public String getSource() {
52 return source;
53 }
54
55 public void setSource(String source) {
56 this.source = source;
57 }
58
59 public NodeList getMarkup() {
60 return markup;
61 }
62
63 public void setMarkup(NodeList markup) {
64 this.markup = markup;
65 }
66 }