Package com.maddyhome.idea.copyright.psi

Examples of com.maddyhome.idea.copyright.psi.UpdatePsiFileCopyright


* @author peter
*/
public class ClojureCopyrightProvider extends UpdateCopyrightsProvider {
  @Override
  public UpdateCopyright createInstance(Project project, Module module, VirtualFile virtualFile, FileType fileType, CopyrightProfile copyrightProfile) {
    return new UpdatePsiFileCopyright(project, module, virtualFile, copyrightProfile) {

      @Override
      protected void scanFile() {
        PsiElement first = getFile().getFirstChild();
        PsiElement last = first;
View Full Code Here

TOP

Related Classes of com.maddyhome.idea.copyright.psi.UpdatePsiFileCopyright

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.