1 /* Copyright 2004 The Apache Software Foundation
2 *
3 * Licensed under the Apache License, Version 2.0 (the "License");
4 * you may not use this file except in compliance with the License.
5 * You may obtain a copy of the License at
6 *
7 * http://www.apache.org/licenses/LICENSE-2.0
8 *
9 * Unless required by applicable law or agreed to in writing, software
10 * distributed under the License is distributed on an "AS IS" BASIS,
11 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 * See the License for the specific language governing permissions and
13 * limitations under the License.
14 */
15
16 package org.apache.xmlbeans;
17
18 /**
19 * Represents a Schema bookmark. The XMLSchema compiler will copy the value
20 * returned by {@link #getValue} when this bookmark is found in the XMLStore
21 * to the corresponding Schema* objects, and the value will be accessible using
22 * the <code>getUserInfo</code> method on these objects.
23 *
24 * @see SchemaType
25 * @see SchemaField
26 * @see SchemaAttributeGroup
27 * @see SchemaModelGroup
28 * @see SchemaIdentityConstraint
29 */
30 public class SchemaBookmark extends XmlCursor.XmlBookmark
31 {
32 private Object _value;
33
34 public SchemaBookmark(Object value)
35 { _value = value; }
36
37 /**
38 * Getter. Called during the Schema compilation process.
39 */
40 public Object getValue()
41 { return _value; }
42 }