mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-18 09:34:34 +07:00
provide a core version of PsiDocTagValueImpl
This commit is contained in:
+52
@@ -0,0 +1,52 @@
|
||||
/*
|
||||
* Copyright 2000-2012 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.javadoc;
|
||||
|
||||
import com.intellij.lang.ASTNode;
|
||||
import com.intellij.psi.JavaDocTokenType;
|
||||
import com.intellij.psi.JavaElementVisitor;
|
||||
import com.intellij.psi.PsiElementVisitor;
|
||||
import com.intellij.psi.impl.source.tree.ChildRole;
|
||||
import com.intellij.psi.impl.source.tree.CompositePsiElement;
|
||||
import com.intellij.psi.javadoc.PsiDocTagValue;
|
||||
import org.jetbrains.annotations.NotNull;
|
||||
|
||||
/**
|
||||
* @author yole
|
||||
*/
|
||||
public class CorePsiDocTagValueImpl extends CompositePsiElement implements PsiDocTagValue {
|
||||
public CorePsiDocTagValueImpl() {
|
||||
super(JavaDocTokenType.DOC_TAG_VALUE_TOKEN);
|
||||
}
|
||||
|
||||
@Override
|
||||
public void accept(@NotNull PsiElementVisitor visitor) {
|
||||
if (visitor instanceof JavaElementVisitor) {
|
||||
((JavaElementVisitor)visitor).visitDocTagValue(this);
|
||||
}
|
||||
else {
|
||||
visitor.visitElement(this);
|
||||
}
|
||||
}
|
||||
|
||||
@Override
|
||||
public int getChildRole(ASTNode child) {
|
||||
if (child.getElementType() == JavaDocTokenType.DOC_TAG_VALUE_COMMA) {
|
||||
return ChildRole.COMMA;
|
||||
}
|
||||
return super.getChildRole(child);
|
||||
}
|
||||
}
|
||||
@@ -19,6 +19,7 @@ import com.intellij.lang.ASTFactory;
|
||||
import com.intellij.lang.DefaultASTFactory;
|
||||
import com.intellij.openapi.components.ServiceManager;
|
||||
import com.intellij.psi.impl.source.Constants;
|
||||
import com.intellij.psi.impl.source.javadoc.CorePsiDocTagValueImpl;
|
||||
import com.intellij.psi.impl.source.javadoc.PsiDocTokenImpl;
|
||||
import com.intellij.psi.impl.source.tree.java.PsiIdentifierImpl;
|
||||
import com.intellij.psi.impl.source.tree.java.PsiJavaTokenImpl;
|
||||
@@ -53,4 +54,12 @@ public class CoreJavaASTFactory extends ASTFactory implements Constants {
|
||||
|
||||
return null;
|
||||
}
|
||||
|
||||
@Override
|
||||
public CompositeElement createComposite(IElementType type) {
|
||||
if (type == DOC_TAG_VALUE_TOKEN) {
|
||||
return new CorePsiDocTagValueImpl();
|
||||
}
|
||||
return null;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user