update copyrights
[fedora-idea.git] / platform / lang-api / src / com / intellij / psi / PsiElementVisitor.java
blobb9f71bd2e87d31345b605eabc1136cf55366be42
1 /*
2 * Copyright 2000-2009 JetBrains s.r.o.
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
8 * http://www.apache.org/licenses/LICENSE-2.0
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
16 package com.intellij.psi;
18 import com.intellij.psi.templateLanguages.OuterLanguageElement;
20 /**
21 * Visitor which can be used to visit elements for all languages.
23 * @see PsiRecursiveElementVisitor
25 public abstract class PsiElementVisitor {
26 public void visitElement(PsiElement element) {
29 public void visitFile(PsiFile file) {
30 visitElement(file);
33 public void visitBinaryFile(PsiBinaryFile file){
34 visitFile(file);
37 public void visitPlainTextFile(PsiPlainTextFile file){
38 visitFile(file);
41 public void visitErrorElement(PsiErrorElement element) {
42 visitElement(element);
45 public void visitPlainText(PsiPlainText content) {
46 visitElement(content);
49 public void visitDirectory(PsiDirectory dir) {
50 visitElement(dir);
53 public void visitComment(PsiComment comment) {
54 visitElement(comment);
57 public void visitWhiteSpace(PsiWhiteSpace space) {
58 visitElement(space);
61 public void visitOuterLanguageElement(OuterLanguageElement element) {
62 visitElement(element);