blob: f8a1609cedb2b916a9639f1ddfcd82844121d774 [file] [log] [blame]
/*
* Copyright 2000-2013 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.jetbrains.python.psi.impl.stubs;
import com.intellij.lang.ASTNode;
import com.intellij.psi.PsiElement;
import com.intellij.psi.stubs.StubElement;
import com.intellij.psi.stubs.StubInputStream;
import com.intellij.psi.stubs.StubOutputStream;
import com.jetbrains.python.psi.PyDecoratorList;
import com.jetbrains.python.psi.PyStubElementType;
import com.jetbrains.python.psi.impl.PyDecoratorListImpl;
import com.jetbrains.python.psi.stubs.PyDecoratorListStub;
import org.jetbrains.annotations.NotNull;
import java.io.IOException;
/**
* Created by IntelliJ IDEA.
* User: dcheryasov
* Date: Sep 28, 2008
*/
public class PyDecoratorListElementType extends PyStubElementType<PyDecoratorListStub, PyDecoratorList> {
public PyDecoratorListElementType() {
super("DECORATOR_LIST");
}
public PsiElement createElement(@NotNull final ASTNode node) {
return new PyDecoratorListImpl(node);
}
public PyDecoratorList createPsi(@NotNull final PyDecoratorListStub stub) {
return new PyDecoratorListImpl(stub);
}
public PyDecoratorListStub createStub(@NotNull final PyDecoratorList psi, final StubElement parentStub) {
return new PyDecoratorListStubImpl(parentStub);
}
public void serialize(@NotNull final PyDecoratorListStub stub, @NotNull final StubOutputStream dataStream) throws IOException {
// nothing
}
@NotNull
public PyDecoratorListStub deserialize(@NotNull final StubInputStream dataStream, final StubElement parentStub) throws IOException {
return new PyDecoratorListStubImpl(parentStub);
}
}