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 global attribute definition
20 *
21 * @see SchemaTypeLoader#findAttribute
22 */
23 public interface SchemaGlobalAttribute extends SchemaLocalAttribute, SchemaComponent
24 {
25 /**
26 * Used to allow on-demand loading of elements.
27 *
28 * @exclude
29 */
30 public final static class Ref extends SchemaComponent.Ref
31 {
32 public Ref(SchemaGlobalAttribute element)
33 { super(element); }
34
35 public Ref(SchemaTypeSystem system, String handle)
36 { super(system, handle); }
37
38 public final int getComponentType()
39 { return SchemaComponent.ATTRIBUTE; }
40
41 public final SchemaGlobalAttribute get()
42 { return (SchemaGlobalAttribute)getComponent(); }
43 }
44
45 /**
46 * Retruns a SchemaGlobalElement.Ref pointing to this element itself.
47 */
48 public Ref getRef();
49
50 }