copyright: update license
[fedora-idea.git] / plugins / Copyright / src / com / maddyhome / idea / copyright / psi / UpdateJavaScriptFileCopyright.java
blob1889002515958977848296f3ae1dad41dfe8feb3
1 /*
2 * Copyright 2000-2007 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.
17 package com.maddyhome.idea.copyright.psi;
19 import com.intellij.openapi.module.Module;
20 import com.intellij.openapi.project.Project;
21 import com.intellij.openapi.vfs.VirtualFile;
22 import com.intellij.psi.PsiComment;
23 import com.intellij.psi.PsiElement;
24 import com.intellij.psi.PsiWhiteSpace;
25 import com.maddyhome.idea.copyright.CopyrightProfile;
27 public class UpdateJavaScriptFileCopyright extends UpdatePsiFileCopyright
29 public UpdateJavaScriptFileCopyright(Project project, Module module, VirtualFile root, CopyrightProfile options)
31 super(project, module, root, options);
34 protected void scanFile()
36 PsiElement first = getFile().getFirstChild();
37 PsiElement last = first;
38 PsiElement next = first;
39 while (next != null)
41 if (next instanceof PsiComment || next instanceof PsiWhiteSpace)
43 next = getNextSibling(next);
45 else
47 break;
49 last = next;
52 if (first != null)
54 checkComments(first, last, true);
56 else
58 checkComments(null, null, true);