/* * Copyright 2000-2010 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.android.fileTypes; import com.intellij.lang.ASTFactory; import com.intellij.lang.ASTNode; import com.intellij.lang.ParserDefinition; import com.intellij.lang.PsiParser; import com.intellij.lexer.EmptyLexer; import com.intellij.lexer.Lexer; import com.intellij.openapi.project.Project; import com.intellij.psi.FileViewProvider; import com.intellij.psi.PsiElement; import com.intellij.psi.PsiFile; import com.intellij.psi.tree.IElementType; import com.intellij.psi.tree.IFileElementType; import com.intellij.psi.tree.TokenSet; import com.intellij.psi.util.PsiUtilCore; import org.jetbrains.annotations.NotNull; /** * @author yole */ public class AndroidIdlParserDefinition implements ParserDefinition { public static final IElementType AIDL_TEXT = new IElementType("AIDL_TEXT", AndroidIdlFileType.ourFileType.getLanguage()); public static final IFileElementType AIDL_FILE_ELEMENT_TYPE = new IFileElementType(AndroidIdlFileType.ourFileType.getLanguage()) { @Override public ASTNode parseContents(ASTNode chameleon) { return ASTFactory.leaf(AIDL_TEXT, chameleon.getChars()); } }; @Override @NotNull public Lexer createLexer(Project project) { return new EmptyLexer(); } @Override public PsiParser createParser(Project project) { throw new UnsupportedOperationException(); } @Override public IFileElementType getFileNodeType() { return AIDL_FILE_ELEMENT_TYPE; } @Override @NotNull public TokenSet getWhitespaceTokens() { return TokenSet.EMPTY; } @Override @NotNull public TokenSet getCommentTokens() { return TokenSet.EMPTY; } @Override @NotNull public TokenSet getStringLiteralElements() { return TokenSet.EMPTY; } @Override @NotNull public PsiElement createElement(ASTNode node) { return PsiUtilCore.NULL_PSI_ELEMENT; } @Override public PsiFile createFile(FileViewProvider viewProvider) { return new AndroidIdlFileImpl(viewProvider); } @Override public SpaceRequirements spaceExistanceTypeBetweenTokens(ASTNode left, ASTNode right) { return ParserDefinition.SpaceRequirements.MAY; } }