blob: 1c40db3d435cda1b3f2e1685ff19b81c7f7db04c [file] [log] [blame]
/*
* 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 org.jetbrains.plugins.groovy.lang.psi.stubs.elements;
import com.intellij.psi.stubs.IndexSink;
import com.intellij.psi.stubs.StubElement;
import com.intellij.psi.stubs.StubInputStream;
import com.intellij.psi.stubs.StubOutputStream;
import com.intellij.util.ArrayUtil;
import com.intellij.util.io.StringRef;
import org.jetbrains.annotations.NotNull;
import org.jetbrains.plugins.groovy.lang.parser.GroovyElementTypes;
import org.jetbrains.plugins.groovy.lang.psi.api.statements.typedef.members.GrEnumConstant;
import org.jetbrains.plugins.groovy.lang.psi.impl.statements.typedef.enumConstant.GrEnumConstantImpl;
import org.jetbrains.plugins.groovy.lang.psi.stubs.GrFieldStub;
import org.jetbrains.plugins.groovy.lang.psi.stubs.GrStubUtils;
import java.io.IOException;
/**
* @author ilyas
*/
public class GrEnumConstantElementType extends GrStubElementType<GrFieldStub, GrEnumConstant> {
public GrEnumConstantElementType() {
super("Enumeration constant");
}
@Override
public GrEnumConstant createPsi(@NotNull GrFieldStub stub) {
return new GrEnumConstantImpl(stub);
}
@Override
public GrFieldStub createStub(@NotNull GrEnumConstant psi, StubElement parentStub) {
String[] annNames = GrStubUtils.getAnnotationNames(psi);
return new GrFieldStub(parentStub, StringRef.fromString(psi.getName()), annNames, ArrayUtil.EMPTY_STRING_ARRAY, GroovyElementTypes.ENUM_CONSTANT, GrFieldStub.buildFlags(psi), null);
}
@Override
public void serialize(@NotNull GrFieldStub stub, @NotNull StubOutputStream dataStream) throws IOException {
serializeFieldStub(stub, dataStream);
}
@Override
@NotNull
public GrFieldStub deserialize(@NotNull StubInputStream dataStream, StubElement parentStub) throws IOException {
return GrFieldElementType.deserializeFieldStub(dataStream, parentStub);
}
protected static void serializeFieldStub(GrFieldStub stub, StubOutputStream dataStream) throws IOException {
GrFieldElementType.serializeFieldStub(stub, dataStream);
}
@Override
public void indexStub(@NotNull GrFieldStub stub, @NotNull IndexSink sink) {
GrFieldElementType.indexFieldStub(stub, sink);
}
}