update copyright
[fedora-idea.git] / xml / dom-openapi / src / com / intellij / util / xml / reflect / DomGenericInfo.java
blob44e9c3a76773131177601edb2745d8394138839d
1 /*
2 * Copyright 2000-2009 JetBrains s.r.o.
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
8 * http://www.apache.org/licenses/LICENSE-2.0
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.
16 package com.intellij.util.xml.reflect;
18 import com.intellij.util.xml.DomElement;
19 import com.intellij.util.xml.GenericDomValue;
20 import com.intellij.psi.xml.XmlElement;
21 import org.jetbrains.annotations.NonNls;
22 import org.jetbrains.annotations.NotNull;
23 import org.jetbrains.annotations.Nullable;
25 import java.util.List;
26 import java.lang.reflect.Type;
28 /**
29 * @author peter
31 public interface DomGenericInfo {
33 @Nullable
34 String getElementName(DomElement element);
36 @NotNull
37 List<? extends AbstractDomChildrenDescription> getChildrenDescriptions();
39 @NotNull
40 List<? extends DomFixedChildDescription> getFixedChildrenDescriptions();
42 @NotNull
43 List<? extends DomCollectionChildDescription> getCollectionChildrenDescriptions();
45 @NotNull
46 List<? extends DomAttributeChildDescription> getAttributeChildrenDescriptions();
48 @Nullable DomFixedChildDescription getFixedChildDescription(@NonNls String tagName);
50 @Nullable DomFixedChildDescription getFixedChildDescription(@NonNls String tagName, @NonNls String namespaceKey);
52 @Nullable DomCollectionChildDescription getCollectionChildDescription(@NonNls String tagName);
54 @Nullable DomCollectionChildDescription getCollectionChildDescription(@NonNls String tagName, @NonNls String namespaceKey);
56 @Nullable
57 DomAttributeChildDescription getAttributeChildDescription(@NonNls String attributeName);
59 @Nullable
60 DomAttributeChildDescription getAttributeChildDescription(@NonNls String attributeName, @NonNls String namespaceKey);
62 Type[] getConcreteInterfaceVariants();
64 /**
65 * @return true, if there's no children in the element, only tag value accessors
67 boolean isTagValueElement();
69 /**
71 * @param element
72 * @return {@link com.intellij.psi.xml.XmlAttributeValue} or {@link com.intellij.psi.xml.XmlTag}
74 @Deprecated
75 @Nullable
76 XmlElement getNameElement(DomElement element);
78 @Nullable
79 GenericDomValue getNameDomElement(DomElement element);
81 @Nullable
82 CustomDomChildrenDescription getCustomNameChildrenDescription();