update copyright
[fedora-idea.git] / xml / openapi / src / com / intellij / psi / XmlRecursiveElementVisitor.java
blob6c99c53fc424cceda2f98e90cb963f4248ec504c
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.
18 * @author max
20 package com.intellij.psi;
22 import java.util.List;
24 public class XmlRecursiveElementVisitor extends XmlElementVisitor {
25 private final boolean myVisitAllFileRoots;
27 public XmlRecursiveElementVisitor() {
28 myVisitAllFileRoots = false;
31 public XmlRecursiveElementVisitor(final boolean visitAllFileRoots) {
32 myVisitAllFileRoots = visitAllFileRoots;
35 public void visitElement(final PsiElement element) {
36 element.acceptChildren(this);
39 @Override
40 public void visitFile(final PsiFile file) {
41 if (myVisitAllFileRoots) {
42 final FileViewProvider viewProvider = file.getViewProvider();
43 final List<PsiFile> allFiles = viewProvider.getAllFiles();
44 if (allFiles.size() > 1) {
45 if (file == viewProvider.getPsi(viewProvider.getBaseLanguage())) {
46 for (PsiFile lFile : allFiles) {
47 lFile.acceptChildren(this);
49 return;
54 super.visitFile(file);