/* * Copyright 2000-2014 JetBrains s.r.o. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.intellij.psi.impl.source.xml; import com.intellij.lang.ASTNode; import com.intellij.openapi.diagnostic.Logger; import com.intellij.psi.PsiElementVisitor; import com.intellij.psi.PsiReference; import com.intellij.psi.XmlElementVisitor; import com.intellij.psi.impl.source.resolve.reference.ReferenceProvidersRegistry; import com.intellij.psi.tree.ChildRoleBase; import com.intellij.psi.tree.IElementType; import com.intellij.psi.xml.XmlChildRole; import com.intellij.psi.xml.XmlElementContentGroup; import com.intellij.psi.xml.XmlElementContentSpec; import com.intellij.psi.xml.XmlElementType; import org.jetbrains.annotations.NotNull; /** * @author Mike */ public class XmlElementContentSpecImpl extends XmlElementImpl implements XmlElementContentSpec, XmlElementType { private static final Logger LOG = Logger.getInstance("#com.intellij.psi.impl.source.xml.XmlElementContentSpecImpl"); public XmlElementContentSpecImpl() { super(XML_ELEMENT_CONTENT_SPEC); } @Override public int getChildRole(ASTNode child) { LOG.assertTrue(child.getTreeParent() == this); IElementType i = child.getElementType(); if (i == XML_CONTENT_ANY) { return XmlChildRole.XML_CONTENT_ANY; } else if (i == XML_CONTENT_EMPTY) { return XmlChildRole.XML_CONTENT_EMPTY; } else if (i == XML_PCDATA) { return XmlChildRole.XML_PCDATA; } else { return ChildRoleBase.NONE; } } @Override public boolean isEmpty() { return findElementByTokenType(XML_CONTENT_EMPTY) != null; } @Override public boolean isAny() { return findElementByTokenType(XML_CONTENT_ANY) != null; } @Override public boolean isMixed() { XmlElementContentGroup topGroup = getTopGroup(); return topGroup != null && ((XmlElementImpl)topGroup).findElementByTokenType(XML_PCDATA) != null; } @Override public boolean hasChildren() { return !(isEmpty() || isAny() || isMixed()); } @Override public XmlElementContentGroup getTopGroup() { return (XmlElementContentGroup)findElementByTokenType(XML_ELEMENT_CONTENT_GROUP); } @Override @NotNull public PsiReference[] getReferences() { return ReferenceProvidersRegistry.getReferencesFromProviders(this,XmlElementContentSpec.class); } @Override public void accept(@NotNull final PsiElementVisitor visitor) { if (visitor instanceof XmlElementVisitor) { ((XmlElementVisitor)visitor).visitXmlElement(this); } else { visitor.visitElement(this); } } }