From 67711a7e83c358b98b26f83578bc35c72f3dba9a Mon Sep 17 00:00:00 2001 From: Roman Shevchenko Date: Mon, 26 Sep 2011 11:13:25 +0200 Subject: [PATCH] Entropy reduction --- java/compiler/impl/src/com/intellij/compiler/HelpID.java | 5 +---- .../src/com/intellij/ide/actions/NewProjectAction.java | 5 +---- .../src/com/intellij/codeInsight/CodeInsightUtil.java | 5 +---- .../codeInsight/generation/GenerateMembersHandlerBase.java | 5 +---- .../generation/actions/GenerateSuperMethodCallAction.java | 5 +---- .../src/com/intellij/psi/impl/light/LightIdentifier.java | 5 +---- .../src/com/intellij/psi/impl/light/LightKeyword.java | 5 +---- .../com/intellij/refactoring/migration/MigrationMap.java | 5 +---- .../intellij/refactoring/migration/MigrationMapEntry.java | 5 +---- .../intellij/refactoring/migration/MigrationMapSet.java | 5 +---- .../com/intellij/refactoring/migration/MigrationUtil.java | 5 +---- java/openapi/src/com/intellij/psi/util/PsiFormatUtil.java | 5 +---- platform/core-api/src/com/intellij/lexer/LexerBase.java | 5 +---- .../com/intellij/openapi/editor/event/DocumentAdapter.java | 5 +---- platform/core-api/src/com/intellij/ui/RowIcon.java | 5 +---- .../src/com/intellij/openapi/editor/ex/LineIterator.java | 5 +---- .../com/intellij/openapi/editor/impl/LineIteratorImpl.java | 5 +---- .../src/com/intellij/psi/impl/source/tree/Factory.java | 5 +---- platform/lang-api/src/com/intellij/lexer/FilterLexer.java | 5 +---- .../com/intellij/codeEditor/printing/PrintSettings.java | 5 +---- .../src/com/intellij/codeInsight/AutoPopupController.java | 5 +---- .../codeInsight/actions/AbstractLayoutCodeProcessor.java | 5 +---- .../completion/actions/ClassNameCompletionAction.java | 5 +---- .../codeInsight/editorActions/UnSelectWordHandler.java | 5 +---- .../generation/actions/ImplementMethodsAction.java | 5 +---- .../generation/actions/OverrideMethodsAction.java | 5 +---- .../codeInsight/navigation/actions/GotoSuperAction.java | 5 +---- .../navigation/actions/GotoTypeDeclarationAction.java | 5 +---- .../codeInsight/navigation/actions/MethodDownAction.java | 5 +---- .../codeInsight/navigation/actions/MethodUpAction.java | 5 +---- .../intellij/codeInsight/template/impl/ConstantNode.java | 5 +---- .../codeInsight/template/impl/EditVariableDialog.java | 5 +---- .../com/intellij/codeInsight/template/impl/EmptyNode.java | 5 +---- .../intellij/codeInsight/template/impl/MacroCallNode.java | 5 +---- .../intellij/codeInsight/template/impl/MacroParser.java | 5 +---- .../intellij/codeInsight/template/impl/TemplateImpl.java | 5 +---- .../intellij/codeInsight/template/impl/TemplateState.java | 5 +---- .../intellij/codeInsight/template/impl/VariableNode.java | 5 +---- platform/lang-impl/src/com/intellij/find/FindUtil.java | 5 +---- .../com/intellij/find/findUsages/FindUsagesOptions.java | 5 +---- platform/lang-impl/src/com/intellij/find/impl/HelpID.java | 5 +---- .../src/com/intellij/ide/actions/ViewStructureAction.java | 5 +---- .../refactoring/actions/IntroduceVariableAction.java | 5 +---- .../src/com/intellij/openapi/util/ExceptionMessages.java | 5 +---- .../src/com/intellij/openapi/vfs/VirtualFileAdapter.java | 5 +---- .../src/com/intellij/ide/actions/CloseProjectAction.java | 5 +---- .../intellij/ide/errorTreeView/NewErrorTreeRenderer.java | 5 +---- .../ide/errorTreeView/impl/ErrorViewTextExporter.java | 5 +---- .../openapi/command/impl/CommandProcessorImpl.java | 5 +---- .../openapi/editor/ex/util/LexerEditorHighlighter.java | 5 +---- .../intellij/openapi/editor/impl/EditorComponentImpl.java | 5 +---- .../com/intellij/openapi/project/ex/ProjectManagerEx.java | 5 +---- .../src/com/intellij/openapi/project/impl/ProjectImpl.java | 5 +---- .../com/intellij/openapi/vfs/ex/dummy/DummyFileSystem.java | 5 +---- .../intellij/openapi/vfs/ex/dummy/VirtualFileDataImpl.java | 5 +---- .../openapi/vfs/ex/dummy/VirtualFileDirectoryImpl.java | 5 +---- .../com/intellij/openapi/vfs/ex/dummy/VirtualFileImpl.java | 5 +---- .../src/com/intellij/ui/plaf/beg/BegMenuBorder.java | 7 ++----- .../src/com/intellij/ui/plaf/beg/BegPopupMenuBorder.java | 5 +---- .../src/com/intellij/openapi/util/text/LineTokenizer.java | 5 +---- platform/util/src/com/intellij/util/cls/BytePointer.java | 5 +---- .../util/src/com/intellij/util/text/StringSearcher.java | 5 +---- .../plugins/groovy/lang/psi/impl/PsiImplUtil.java | 5 +---- 63 files changed, 64 insertions(+), 253 deletions(-) diff --git a/java/compiler/impl/src/com/intellij/compiler/HelpID.java b/java/compiler/impl/src/com/intellij/compiler/HelpID.java index 4105740394ea..9b34a51ea167 100644 --- a/java/compiler/impl/src/com/intellij/compiler/HelpID.java +++ b/java/compiler/impl/src/com/intellij/compiler/HelpID.java @@ -1,5 +1,5 @@ /* - * Copyright 2000-2009 JetBrains s.r.o. + * Copyright 2000-2011 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. @@ -17,9 +17,6 @@ package com.intellij.compiler; import org.jetbrains.annotations.NonNls; -/** - * - */ public interface HelpID { @NonNls String COMPILER = "reference.toolWindows.messages"; @NonNls String GENERATE_ANT_BUILD = "editing.generateAntBuild"; diff --git a/java/idea-ui/src/com/intellij/ide/actions/NewProjectAction.java b/java/idea-ui/src/com/intellij/ide/actions/NewProjectAction.java index f4e9b3e7949c..7deeeced372d 100644 --- a/java/idea-ui/src/com/intellij/ide/actions/NewProjectAction.java +++ b/java/idea-ui/src/com/intellij/ide/actions/NewProjectAction.java @@ -1,5 +1,5 @@ /* - * Copyright 2000-2009 JetBrains s.r.o. + * Copyright 2000-2011 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. @@ -21,9 +21,6 @@ import com.intellij.openapi.actionSystem.AnActionEvent; import com.intellij.openapi.actionSystem.PlatformDataKeys; import com.intellij.openapi.project.DumbAware; -/** - * - */ public class NewProjectAction extends AnAction implements DumbAware { public void actionPerformed(AnActionEvent e) { NewProjectUtil.createNewProject(PlatformDataKeys.PROJECT.getData(e.getDataContext()), null); diff --git a/java/java-impl/src/com/intellij/codeInsight/CodeInsightUtil.java b/java/java-impl/src/com/intellij/codeInsight/CodeInsightUtil.java index cd343e6a129d..f72730bc5403 100644 --- a/java/java-impl/src/com/intellij/codeInsight/CodeInsightUtil.java +++ b/java/java-impl/src/com/intellij/codeInsight/CodeInsightUtil.java @@ -1,5 +1,5 @@ /* - * Copyright 2000-2009 JetBrains s.r.o. + * Copyright 2000-2011 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. @@ -47,9 +47,6 @@ import org.jetbrains.annotations.Nullable; import java.util.*; -/** - * - */ public class CodeInsightUtil { @Nullable public static PsiExpression findExpressionInRange(PsiFile file, int startOffset, int endOffset) { diff --git a/java/java-impl/src/com/intellij/codeInsight/generation/GenerateMembersHandlerBase.java b/java/java-impl/src/com/intellij/codeInsight/generation/GenerateMembersHandlerBase.java index 198d75f3d4c3..254f26b7cf46 100644 --- a/java/java-impl/src/com/intellij/codeInsight/generation/GenerateMembersHandlerBase.java +++ b/java/java-impl/src/com/intellij/codeInsight/generation/GenerateMembersHandlerBase.java @@ -1,5 +1,5 @@ /* - * Copyright 2000-2009 JetBrains s.r.o. + * Copyright 2000-2011 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. @@ -46,9 +46,6 @@ import org.jetbrains.annotations.Nullable; import java.util.ArrayList; import java.util.List; -/** - * - */ public abstract class GenerateMembersHandlerBase implements CodeInsightActionHandler { private static final Logger LOG = Logger.getInstance("#com.intellij.codeInsight.generation.GenerateMembersHandlerBase"); diff --git a/java/java-impl/src/com/intellij/codeInsight/generation/actions/GenerateSuperMethodCallAction.java b/java/java-impl/src/com/intellij/codeInsight/generation/actions/GenerateSuperMethodCallAction.java index 7e4678cc21b6..43cbbdec7740 100644 --- a/java/java-impl/src/com/intellij/codeInsight/generation/actions/GenerateSuperMethodCallAction.java +++ b/java/java-impl/src/com/intellij/codeInsight/generation/actions/GenerateSuperMethodCallAction.java @@ -1,5 +1,5 @@ /* - * Copyright 2000-2009 JetBrains s.r.o. + * Copyright 2000-2011 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. @@ -23,9 +23,6 @@ import com.intellij.psi.PsiFile; import com.intellij.psi.PsiJavaFile; import com.intellij.psi.PsiMethod; -/** - * - */ public class GenerateSuperMethodCallAction extends BaseCodeInsightAction { protected CodeInsightActionHandler getHandler() { return new GenerateSuperMethodCallHandler(); diff --git a/java/java-impl/src/com/intellij/psi/impl/light/LightIdentifier.java b/java/java-impl/src/com/intellij/psi/impl/light/LightIdentifier.java index 1f240301d24e..3a28278eee5f 100644 --- a/java/java-impl/src/com/intellij/psi/impl/light/LightIdentifier.java +++ b/java/java-impl/src/com/intellij/psi/impl/light/LightIdentifier.java @@ -1,5 +1,5 @@ /* - * Copyright 2000-2009 JetBrains s.r.o. + * Copyright 2000-2011 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. @@ -20,9 +20,6 @@ import com.intellij.psi.*; import com.intellij.psi.tree.IElementType; import org.jetbrains.annotations.NotNull; -/** - * - */ public class LightIdentifier extends LightElement implements PsiIdentifier, PsiJavaToken { private final String myText; diff --git a/java/java-impl/src/com/intellij/psi/impl/light/LightKeyword.java b/java/java-impl/src/com/intellij/psi/impl/light/LightKeyword.java index 0ec6cff20cb0..b60b04f765d2 100644 --- a/java/java-impl/src/com/intellij/psi/impl/light/LightKeyword.java +++ b/java/java-impl/src/com/intellij/psi/impl/light/LightKeyword.java @@ -1,5 +1,5 @@ /* - * Copyright 2000-2009 JetBrains s.r.o. + * Copyright 2000-2011 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. @@ -23,9 +23,6 @@ import com.intellij.psi.*; import com.intellij.psi.tree.IElementType; import org.jetbrains.annotations.NotNull; -/** - * - */ public class LightKeyword extends LightElement implements PsiKeyword, PsiJavaToken { private final String myText; diff --git a/java/java-impl/src/com/intellij/refactoring/migration/MigrationMap.java b/java/java-impl/src/com/intellij/refactoring/migration/MigrationMap.java index 41578e818df5..c3a1c4e25a74 100644 --- a/java/java-impl/src/com/intellij/refactoring/migration/MigrationMap.java +++ b/java/java-impl/src/com/intellij/refactoring/migration/MigrationMap.java @@ -1,6 +1,6 @@ /* - * Copyright 2000-2009 JetBrains s.r.o. + * Copyright 2000-2011 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. @@ -18,9 +18,6 @@ package com.intellij.refactoring.migration; import java.util.ArrayList; -/** - * - */ public class MigrationMap { private String myName; private String myDescription; diff --git a/java/java-impl/src/com/intellij/refactoring/migration/MigrationMapEntry.java b/java/java-impl/src/com/intellij/refactoring/migration/MigrationMapEntry.java index 8222a356b22f..ad4b9ee10cbd 100644 --- a/java/java-impl/src/com/intellij/refactoring/migration/MigrationMapEntry.java +++ b/java/java-impl/src/com/intellij/refactoring/migration/MigrationMapEntry.java @@ -1,6 +1,6 @@ /* - * Copyright 2000-2009 JetBrains s.r.o. + * Copyright 2000-2011 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. @@ -16,9 +16,6 @@ */ package com.intellij.refactoring.migration; -/** - * - */ public class MigrationMapEntry implements Cloneable { private String myOldName; private String myNewName; diff --git a/java/java-impl/src/com/intellij/refactoring/migration/MigrationMapSet.java b/java/java-impl/src/com/intellij/refactoring/migration/MigrationMapSet.java index b4eb4184823d..0114629fd4f3 100644 --- a/java/java-impl/src/com/intellij/refactoring/migration/MigrationMapSet.java +++ b/java/java-impl/src/com/intellij/refactoring/migration/MigrationMapSet.java @@ -1,6 +1,6 @@ /* - * Copyright 2000-2009 JetBrains s.r.o. + * Copyright 2000-2011 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. @@ -33,9 +33,6 @@ import java.io.*; import java.util.ArrayList; import java.util.Iterator; -/** - * - */ public class MigrationMapSet { private static final Logger LOG = Logger.getInstance("#com.intellij.refactoring.migration.MigrationMapSet"); diff --git a/java/java-impl/src/com/intellij/refactoring/migration/MigrationUtil.java b/java/java-impl/src/com/intellij/refactoring/migration/MigrationUtil.java index a8a202f8aa4b..89d3cb420954 100644 --- a/java/java-impl/src/com/intellij/refactoring/migration/MigrationUtil.java +++ b/java/java-impl/src/com/intellij/refactoring/migration/MigrationUtil.java @@ -1,5 +1,5 @@ /* - * Copyright 2000-2009 JetBrains s.r.o. + * Copyright 2000-2011 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. @@ -28,9 +28,6 @@ import com.intellij.util.IncorrectOperationException; import java.util.ArrayList; -/** - * - */ public class MigrationUtil { private static final Logger LOG = Logger.getInstance("#com.intellij.refactoring.migration.MigrationUtil"); diff --git a/java/openapi/src/com/intellij/psi/util/PsiFormatUtil.java b/java/openapi/src/com/intellij/psi/util/PsiFormatUtil.java index f8d0cc98331d..48fdda04948f 100644 --- a/java/openapi/src/com/intellij/psi/util/PsiFormatUtil.java +++ b/java/openapi/src/com/intellij/psi/util/PsiFormatUtil.java @@ -1,5 +1,5 @@ /* - * Copyright 2000-2009 JetBrains s.r.o. + * Copyright 2000-2011 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. @@ -21,9 +21,6 @@ import org.jetbrains.annotations.NonNls; import org.jetbrains.annotations.NotNull; import org.jetbrains.annotations.Nullable; -/** - * - */ public class PsiFormatUtil extends PsiFormatUtilBase { public static String formatVariable(PsiVariable variable, int options, PsiSubstitutor substitutor){ diff --git a/platform/core-api/src/com/intellij/lexer/LexerBase.java b/platform/core-api/src/com/intellij/lexer/LexerBase.java index b00cee3a8368..e308bf35959d 100644 --- a/platform/core-api/src/com/intellij/lexer/LexerBase.java +++ b/platform/core-api/src/com/intellij/lexer/LexerBase.java @@ -1,5 +1,5 @@ /* - * Copyright 2000-2009 JetBrains s.r.o. + * Copyright 2000-2011 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. @@ -15,9 +15,6 @@ */ package com.intellij.lexer; -/** - * - */ public abstract class LexerBase extends Lexer { public LexerPosition getCurrentPosition() { final int offset = getTokenStart(); diff --git a/platform/core-api/src/com/intellij/openapi/editor/event/DocumentAdapter.java b/platform/core-api/src/com/intellij/openapi/editor/event/DocumentAdapter.java index 577d6e15e5a4..3e29addc06fa 100644 --- a/platform/core-api/src/com/intellij/openapi/editor/event/DocumentAdapter.java +++ b/platform/core-api/src/com/intellij/openapi/editor/event/DocumentAdapter.java @@ -1,5 +1,5 @@ /* - * Copyright 2000-2009 JetBrains s.r.o. + * Copyright 2000-2011 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. @@ -15,9 +15,6 @@ */ package com.intellij.openapi.editor.event; -/** - * - */ public abstract class DocumentAdapter implements DocumentListener { public void beforeDocumentChange(DocumentEvent e) { } diff --git a/platform/core-api/src/com/intellij/ui/RowIcon.java b/platform/core-api/src/com/intellij/ui/RowIcon.java index 01b80b79fde2..c48f0c1144bb 100644 --- a/platform/core-api/src/com/intellij/ui/RowIcon.java +++ b/platform/core-api/src/com/intellij/ui/RowIcon.java @@ -1,6 +1,6 @@ /* - * Copyright 2000-2009 JetBrains s.r.o. + * Copyright 2000-2011 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. @@ -21,9 +21,6 @@ import javax.swing.*; import java.awt.*; import java.util.Arrays; -/** - * - */ public class RowIcon implements Icon { private final Icon[] myIcons; diff --git a/platform/core-impl/src/com/intellij/openapi/editor/ex/LineIterator.java b/platform/core-impl/src/com/intellij/openapi/editor/ex/LineIterator.java index a9548cd12b18..cfdbc99f7c89 100644 --- a/platform/core-impl/src/com/intellij/openapi/editor/ex/LineIterator.java +++ b/platform/core-impl/src/com/intellij/openapi/editor/ex/LineIterator.java @@ -1,5 +1,5 @@ /* - * Copyright 2000-2009 JetBrains s.r.o. + * Copyright 2000-2011 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. @@ -15,9 +15,6 @@ */ package com.intellij.openapi.editor.ex; -/** - * - */ public interface LineIterator { void start(int startOffset); int getStart(); diff --git a/platform/core-impl/src/com/intellij/openapi/editor/impl/LineIteratorImpl.java b/platform/core-impl/src/com/intellij/openapi/editor/impl/LineIteratorImpl.java index 5507380fb096..45efc5541d97 100644 --- a/platform/core-impl/src/com/intellij/openapi/editor/impl/LineIteratorImpl.java +++ b/platform/core-impl/src/com/intellij/openapi/editor/impl/LineIteratorImpl.java @@ -1,5 +1,5 @@ /* - * Copyright 2000-2009 JetBrains s.r.o. + * Copyright 2000-2011 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. @@ -17,9 +17,6 @@ package com.intellij.openapi.editor.impl; import com.intellij.openapi.editor.ex.LineIterator; -/** - * - */ public class LineIteratorImpl implements LineIterator { private int myLineIndex = 0; private final LineSet myLineSet; diff --git a/platform/core-impl/src/com/intellij/psi/impl/source/tree/Factory.java b/platform/core-impl/src/com/intellij/psi/impl/source/tree/Factory.java index 958f0ce25879..7a018cf2af04 100644 --- a/platform/core-impl/src/com/intellij/psi/impl/source/tree/Factory.java +++ b/platform/core-impl/src/com/intellij/psi/impl/source/tree/Factory.java @@ -1,5 +1,5 @@ /* - * Copyright 2000-2009 JetBrains s.r.o. + * Copyright 2000-2011 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. @@ -26,9 +26,6 @@ import com.intellij.psi.tree.IElementType; import com.intellij.util.CharTable; import org.jetbrains.annotations.NotNull; -/** - * - */ public class Factory { private Factory() {} diff --git a/platform/lang-api/src/com/intellij/lexer/FilterLexer.java b/platform/lang-api/src/com/intellij/lexer/FilterLexer.java index 3669c39e0af4..3ef6b4031b94 100644 --- a/platform/lang-api/src/com/intellij/lexer/FilterLexer.java +++ b/platform/lang-api/src/com/intellij/lexer/FilterLexer.java @@ -1,5 +1,5 @@ /* - * Copyright 2000-2009 JetBrains s.r.o. + * Copyright 2000-2011 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. @@ -18,9 +18,6 @@ package com.intellij.lexer; import com.intellij.psi.tree.IElementType; import com.intellij.psi.tree.TokenSet; -/** - * - */ public class FilterLexer extends DelegateLexer { private Filter myFilter; private boolean[] myStateFilter; diff --git a/platform/lang-impl/src/com/intellij/codeEditor/printing/PrintSettings.java b/platform/lang-impl/src/com/intellij/codeEditor/printing/PrintSettings.java index c457ead8cf69..0160234cd4c4 100644 --- a/platform/lang-impl/src/com/intellij/codeEditor/printing/PrintSettings.java +++ b/platform/lang-impl/src/com/intellij/codeEditor/printing/PrintSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2000-2009 JetBrains s.r.o. + * Copyright 2000-2011 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. @@ -24,9 +24,6 @@ import org.jetbrains.annotations.NotNull; import java.io.File; -/** - * - */ @State( name="PrintSettings", storages= { diff --git a/platform/lang-impl/src/com/intellij/codeInsight/AutoPopupController.java b/platform/lang-impl/src/com/intellij/codeInsight/AutoPopupController.java index c2baeeb502ca..ee1818ffa845 100644 --- a/platform/lang-impl/src/com/intellij/codeInsight/AutoPopupController.java +++ b/platform/lang-impl/src/com/intellij/codeInsight/AutoPopupController.java @@ -1,5 +1,5 @@ /* - * Copyright 2000-2009 JetBrains s.r.o. + * Copyright 2000-2011 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. @@ -46,9 +46,6 @@ import com.intellij.util.ui.UIUtil; import org.jetbrains.annotations.Nullable; import org.jetbrains.annotations.TestOnly; -/** - * - */ public class AutoPopupController implements Disposable { private final Project myProject; private final Alarm myAlarm = new Alarm(); diff --git a/platform/lang-impl/src/com/intellij/codeInsight/actions/AbstractLayoutCodeProcessor.java b/platform/lang-impl/src/com/intellij/codeInsight/actions/AbstractLayoutCodeProcessor.java index c780b443aa69..3e26011afb22 100644 --- a/platform/lang-impl/src/com/intellij/codeInsight/actions/AbstractLayoutCodeProcessor.java +++ b/platform/lang-impl/src/com/intellij/codeInsight/actions/AbstractLayoutCodeProcessor.java @@ -1,5 +1,5 @@ /* - * Copyright 2000-2009 JetBrains s.r.o. + * Copyright 2000-2011 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. @@ -49,9 +49,6 @@ import java.util.List; import java.util.concurrent.ExecutionException; import java.util.concurrent.FutureTask; -/** - * - */ public abstract class AbstractLayoutCodeProcessor { private static final Logger LOG = Logger.getInstance("#com.intellij.codeInsight.actions.AbstractLayoutCodeProcessor"); diff --git a/platform/lang-impl/src/com/intellij/codeInsight/completion/actions/ClassNameCompletionAction.java b/platform/lang-impl/src/com/intellij/codeInsight/completion/actions/ClassNameCompletionAction.java index 48eefd5546a0..924b27a9be32 100644 --- a/platform/lang-impl/src/com/intellij/codeInsight/completion/actions/ClassNameCompletionAction.java +++ b/platform/lang-impl/src/com/intellij/codeInsight/completion/actions/ClassNameCompletionAction.java @@ -1,5 +1,5 @@ /* - * Copyright 2000-2009 JetBrains s.r.o. + * Copyright 2000-2011 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. @@ -18,9 +18,6 @@ package com.intellij.codeInsight.completion.actions; import com.intellij.codeInsight.completion.CompletionType; -/** - * - */ public class ClassNameCompletionAction extends BaseCodeCompletionAction{ public ClassNameCompletionAction() { super(CompletionType.CLASS_NAME); diff --git a/platform/lang-impl/src/com/intellij/codeInsight/editorActions/UnSelectWordHandler.java b/platform/lang-impl/src/com/intellij/codeInsight/editorActions/UnSelectWordHandler.java index 2c62c160764f..244c5493e6b2 100644 --- a/platform/lang-impl/src/com/intellij/codeInsight/editorActions/UnSelectWordHandler.java +++ b/platform/lang-impl/src/com/intellij/codeInsight/editorActions/UnSelectWordHandler.java @@ -1,5 +1,5 @@ /* - * Copyright 2000-2009 JetBrains s.r.o. + * Copyright 2000-2011 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. @@ -33,9 +33,6 @@ import com.intellij.util.Processor; import java.util.List; -/** - * - */ public class UnSelectWordHandler extends EditorActionHandler { private final EditorActionHandler myOriginalHandler; diff --git a/platform/lang-impl/src/com/intellij/codeInsight/generation/actions/ImplementMethodsAction.java b/platform/lang-impl/src/com/intellij/codeInsight/generation/actions/ImplementMethodsAction.java index 289ca0027957..a90fd22c8ffd 100644 --- a/platform/lang-impl/src/com/intellij/codeInsight/generation/actions/ImplementMethodsAction.java +++ b/platform/lang-impl/src/com/intellij/codeInsight/generation/actions/ImplementMethodsAction.java @@ -1,5 +1,5 @@ /* - * Copyright 2000-2009 JetBrains s.r.o. + * Copyright 2000-2011 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. @@ -28,9 +28,6 @@ import com.intellij.openapi.actionSystem.AnActionEvent; import com.intellij.psi.PsiFile; import com.intellij.psi.util.PsiUtilBase; -/** - * - */ public class ImplementMethodsAction extends BaseCodeInsightAction { protected CodeInsightActionHandler getHandler() { return new ImplementMethodsHandler(); diff --git a/platform/lang-impl/src/com/intellij/codeInsight/generation/actions/OverrideMethodsAction.java b/platform/lang-impl/src/com/intellij/codeInsight/generation/actions/OverrideMethodsAction.java index d86a89bbe751..74f8dddb07bf 100644 --- a/platform/lang-impl/src/com/intellij/codeInsight/generation/actions/OverrideMethodsAction.java +++ b/platform/lang-impl/src/com/intellij/codeInsight/generation/actions/OverrideMethodsAction.java @@ -1,5 +1,5 @@ /* - * Copyright 2000-2009 JetBrains s.r.o. + * Copyright 2000-2011 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. @@ -28,9 +28,6 @@ import com.intellij.openapi.actionSystem.AnActionEvent; import com.intellij.psi.PsiFile; import com.intellij.psi.util.PsiUtilBase; -/** - * - */ public class OverrideMethodsAction extends BaseCodeInsightAction { protected CodeInsightActionHandler getHandler() { diff --git a/platform/lang-impl/src/com/intellij/codeInsight/navigation/actions/GotoSuperAction.java b/platform/lang-impl/src/com/intellij/codeInsight/navigation/actions/GotoSuperAction.java index 0d210527b5ac..f7d92f217612 100644 --- a/platform/lang-impl/src/com/intellij/codeInsight/navigation/actions/GotoSuperAction.java +++ b/platform/lang-impl/src/com/intellij/codeInsight/navigation/actions/GotoSuperAction.java @@ -1,5 +1,5 @@ /* - * Copyright 2000-2009 JetBrains s.r.o. + * Copyright 2000-2011 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. @@ -29,9 +29,6 @@ import com.intellij.psi.util.PsiUtilBase; import org.jetbrains.annotations.NonNls; import org.jetbrains.annotations.NotNull; -/** - * - */ public class GotoSuperAction extends BaseCodeInsightAction implements CodeInsightActionHandler { @NonNls public static final String FEATURE_ID = "navigation.goto.super"; diff --git a/platform/lang-impl/src/com/intellij/codeInsight/navigation/actions/GotoTypeDeclarationAction.java b/platform/lang-impl/src/com/intellij/codeInsight/navigation/actions/GotoTypeDeclarationAction.java index 2afa54288314..76a4180302f9 100644 --- a/platform/lang-impl/src/com/intellij/codeInsight/navigation/actions/GotoTypeDeclarationAction.java +++ b/platform/lang-impl/src/com/intellij/codeInsight/navigation/actions/GotoTypeDeclarationAction.java @@ -1,5 +1,5 @@ /* - * Copyright 2000-2009 JetBrains s.r.o. + * Copyright 2000-2011 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. @@ -39,9 +39,6 @@ import org.jetbrains.annotations.Nullable; import java.util.Set; -/** - * - */ public class GotoTypeDeclarationAction extends BaseCodeInsightAction implements CodeInsightActionHandler, DumbAware { protected CodeInsightActionHandler getHandler(){ diff --git a/platform/lang-impl/src/com/intellij/codeInsight/navigation/actions/MethodDownAction.java b/platform/lang-impl/src/com/intellij/codeInsight/navigation/actions/MethodDownAction.java index e4f1e697f021..507ba52f0aeb 100644 --- a/platform/lang-impl/src/com/intellij/codeInsight/navigation/actions/MethodDownAction.java +++ b/platform/lang-impl/src/com/intellij/codeInsight/navigation/actions/MethodDownAction.java @@ -1,5 +1,5 @@ /* - * Copyright 2000-2009 JetBrains s.r.o. + * Copyright 2000-2011 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. @@ -23,9 +23,6 @@ import com.intellij.openapi.editor.Editor; import com.intellij.openapi.project.Project; import com.intellij.psi.PsiFile; -/** - * - */ public class MethodDownAction extends BaseCodeInsightAction { protected CodeInsightActionHandler getHandler() { return new MethodDownHandler(); diff --git a/platform/lang-impl/src/com/intellij/codeInsight/navigation/actions/MethodUpAction.java b/platform/lang-impl/src/com/intellij/codeInsight/navigation/actions/MethodUpAction.java index 959204473f92..d09a1d2329aa 100644 --- a/platform/lang-impl/src/com/intellij/codeInsight/navigation/actions/MethodUpAction.java +++ b/platform/lang-impl/src/com/intellij/codeInsight/navigation/actions/MethodUpAction.java @@ -1,5 +1,5 @@ /* - * Copyright 2000-2009 JetBrains s.r.o. + * Copyright 2000-2011 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. @@ -27,9 +27,6 @@ import com.intellij.openapi.editor.Editor; import com.intellij.openapi.project.Project; import com.intellij.psi.PsiFile; -/** - * - */ public class MethodUpAction extends BaseCodeInsightAction { protected CodeInsightActionHandler getHandler() { return new MethodUpHandler(); diff --git a/platform/lang-impl/src/com/intellij/codeInsight/template/impl/ConstantNode.java b/platform/lang-impl/src/com/intellij/codeInsight/template/impl/ConstantNode.java index d385776cdff3..8e74e46a96d9 100644 --- a/platform/lang-impl/src/com/intellij/codeInsight/template/impl/ConstantNode.java +++ b/platform/lang-impl/src/com/intellij/codeInsight/template/impl/ConstantNode.java @@ -1,5 +1,5 @@ /* - * Copyright 2000-2009 JetBrains s.r.o. + * Copyright 2000-2011 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. @@ -22,9 +22,6 @@ import com.intellij.codeInsight.template.ExpressionContext; import com.intellij.codeInsight.template.Result; import com.intellij.codeInsight.template.TextResult; -/** - * - */ public class ConstantNode extends Expression { private final Result myValue; diff --git a/platform/lang-impl/src/com/intellij/codeInsight/template/impl/EditVariableDialog.java b/platform/lang-impl/src/com/intellij/codeInsight/template/impl/EditVariableDialog.java index 593deef4e3c1..60b291a9c2d3 100644 --- a/platform/lang-impl/src/com/intellij/codeInsight/template/impl/EditVariableDialog.java +++ b/platform/lang-impl/src/com/intellij/codeInsight/template/impl/EditVariableDialog.java @@ -1,5 +1,5 @@ /* - * Copyright 2000-2009 JetBrains s.r.o. + * Copyright 2000-2011 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. @@ -45,9 +45,6 @@ import java.util.Arrays; import java.util.Comparator; import java.util.List; -/** - * - */ class EditVariableDialog extends DialogWrapper { private ArrayList myVariables = new ArrayList(); diff --git a/platform/lang-impl/src/com/intellij/codeInsight/template/impl/EmptyNode.java b/platform/lang-impl/src/com/intellij/codeInsight/template/impl/EmptyNode.java index d6572aa1b4fb..6747b250611b 100644 --- a/platform/lang-impl/src/com/intellij/codeInsight/template/impl/EmptyNode.java +++ b/platform/lang-impl/src/com/intellij/codeInsight/template/impl/EmptyNode.java @@ -1,5 +1,5 @@ /* - * Copyright 2000-2009 JetBrains s.r.o. + * Copyright 2000-2011 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. @@ -21,9 +21,6 @@ import com.intellij.codeInsight.template.Expression; import com.intellij.codeInsight.template.ExpressionContext; import com.intellij.codeInsight.template.Result; -/** - * - */ public class EmptyNode extends Expression { public EmptyNode() { } diff --git a/platform/lang-impl/src/com/intellij/codeInsight/template/impl/MacroCallNode.java b/platform/lang-impl/src/com/intellij/codeInsight/template/impl/MacroCallNode.java index 469313a2621a..87fc3f494f7f 100644 --- a/platform/lang-impl/src/com/intellij/codeInsight/template/impl/MacroCallNode.java +++ b/platform/lang-impl/src/com/intellij/codeInsight/template/impl/MacroCallNode.java @@ -1,5 +1,5 @@ /* - * Copyright 2000-2009 JetBrains s.r.o. + * Copyright 2000-2011 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. @@ -25,9 +25,6 @@ import org.jetbrains.annotations.NotNull; import java.util.ArrayList; -/** - * - */ public class MacroCallNode extends Expression { public Macro getMacro() { return myMacro; diff --git a/platform/lang-impl/src/com/intellij/codeInsight/template/impl/MacroParser.java b/platform/lang-impl/src/com/intellij/codeInsight/template/impl/MacroParser.java index 98e306d4caae..3728cb6e8787 100644 --- a/platform/lang-impl/src/com/intellij/codeInsight/template/impl/MacroParser.java +++ b/platform/lang-impl/src/com/intellij/codeInsight/template/impl/MacroParser.java @@ -1,5 +1,5 @@ /* - * Copyright 2000-2009 JetBrains s.r.o. + * Copyright 2000-2011 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. @@ -22,9 +22,6 @@ import com.intellij.codeInsight.template.macro.MacroFactory; import com.intellij.lexer.Lexer; import com.intellij.psi.tree.IElementType; -/** - * - */ class MacroParser { private MacroParser() { } diff --git a/platform/lang-impl/src/com/intellij/codeInsight/template/impl/TemplateImpl.java b/platform/lang-impl/src/com/intellij/codeInsight/template/impl/TemplateImpl.java index ba36fe5bb2d7..50e562addaab 100644 --- a/platform/lang-impl/src/com/intellij/codeInsight/template/impl/TemplateImpl.java +++ b/platform/lang-impl/src/com/intellij/codeInsight/template/impl/TemplateImpl.java @@ -1,5 +1,5 @@ /* - * Copyright 2000-2009 JetBrains s.r.o. + * Copyright 2000-2011 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. @@ -29,9 +29,6 @@ import org.jetbrains.annotations.Nullable; import java.util.*; -/** - * - */ public class TemplateImpl extends Template implements SchemeElement { private String myKey; private String myString = null; diff --git a/platform/lang-impl/src/com/intellij/codeInsight/template/impl/TemplateState.java b/platform/lang-impl/src/com/intellij/codeInsight/template/impl/TemplateState.java index 0505cc7a99de..dc176ca60813 100644 --- a/platform/lang-impl/src/com/intellij/codeInsight/template/impl/TemplateState.java +++ b/platform/lang-impl/src/com/intellij/codeInsight/template/impl/TemplateState.java @@ -1,5 +1,5 @@ /* - * Copyright 2000-2009 JetBrains s.r.o. + * Copyright 2000-2011 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. @@ -67,9 +67,6 @@ import java.util.BitSet; import java.util.List; import java.util.Map; -/** - * - */ public class TemplateState implements Disposable { private static final Logger LOG = Logger.getInstance("#com.intellij.codeInsight.template.impl.TemplateState"); private Project myProject; diff --git a/platform/lang-impl/src/com/intellij/codeInsight/template/impl/VariableNode.java b/platform/lang-impl/src/com/intellij/codeInsight/template/impl/VariableNode.java index a0097242d21f..ea9bd3e18d27 100644 --- a/platform/lang-impl/src/com/intellij/codeInsight/template/impl/VariableNode.java +++ b/platform/lang-impl/src/com/intellij/codeInsight/template/impl/VariableNode.java @@ -1,5 +1,5 @@ /* - * Copyright 2000-2009 JetBrains s.r.o. + * Copyright 2000-2011 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. @@ -21,9 +21,6 @@ import com.intellij.codeInsight.template.Expression; import com.intellij.codeInsight.template.ExpressionContext; import com.intellij.codeInsight.template.Result; -/** - * - */ public class VariableNode extends Expression { private final String myName; private final Expression myInitialValue; diff --git a/platform/lang-impl/src/com/intellij/find/FindUtil.java b/platform/lang-impl/src/com/intellij/find/FindUtil.java index a9bd44837e62..a07ba086f8ca 100644 --- a/platform/lang-impl/src/com/intellij/find/FindUtil.java +++ b/platform/lang-impl/src/com/intellij/find/FindUtil.java @@ -1,5 +1,5 @@ /* - * Copyright 2000-2009 JetBrains s.r.o. + * Copyright 2000-2011 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. @@ -67,9 +67,6 @@ import java.util.Collections; import java.util.Comparator; import java.util.List; -/** - * - */ public class FindUtil { private static final Key KEY = Key.create("FindUtil.KEY"); diff --git a/platform/lang-impl/src/com/intellij/find/findUsages/FindUsagesOptions.java b/platform/lang-impl/src/com/intellij/find/findUsages/FindUsagesOptions.java index 7a35f22c9e8a..ed7648585898 100644 --- a/platform/lang-impl/src/com/intellij/find/findUsages/FindUsagesOptions.java +++ b/platform/lang-impl/src/com/intellij/find/findUsages/FindUsagesOptions.java @@ -1,6 +1,6 @@ /* - * Copyright 2000-2009 JetBrains s.r.o. + * Copyright 2000-2011 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. @@ -31,9 +31,6 @@ import org.jetbrains.annotations.Nullable; import java.util.List; -/** - * - */ public class FindUsagesOptions extends UserDataHolderBase implements Cloneable { public SearchScope searchScope; diff --git a/platform/lang-impl/src/com/intellij/find/impl/HelpID.java b/platform/lang-impl/src/com/intellij/find/impl/HelpID.java index 79ee64f56522..3e769d2c8f56 100644 --- a/platform/lang-impl/src/com/intellij/find/impl/HelpID.java +++ b/platform/lang-impl/src/com/intellij/find/impl/HelpID.java @@ -1,6 +1,6 @@ /* - * Copyright 2000-2009 JetBrains s.r.o. + * Copyright 2000-2011 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. @@ -19,9 +19,6 @@ package com.intellij.find.impl; import org.jetbrains.annotations.NonNls; -/** - * - */ public interface HelpID { @NonNls String FIND_PACKAGE_USAGES = "reference.dialogs.findUsages.package"; @NonNls String FIND_CLASS_USAGES = "reference.dialogs.findUsages.class"; diff --git a/platform/lang-impl/src/com/intellij/ide/actions/ViewStructureAction.java b/platform/lang-impl/src/com/intellij/ide/actions/ViewStructureAction.java index 68cd485b6798..07720a7c5028 100644 --- a/platform/lang-impl/src/com/intellij/ide/actions/ViewStructureAction.java +++ b/platform/lang-impl/src/com/intellij/ide/actions/ViewStructureAction.java @@ -1,5 +1,5 @@ /* - * Copyright 2000-2009 JetBrains s.r.o. + * Copyright 2000-2011 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. @@ -34,9 +34,6 @@ import com.intellij.psi.PsiFile; import org.jetbrains.annotations.NotNull; import org.jetbrains.annotations.Nullable; -/** - * - */ public class ViewStructureAction extends AnAction { public ViewStructureAction() { setEnabledInModalContext(true); diff --git a/platform/lang-impl/src/com/intellij/refactoring/actions/IntroduceVariableAction.java b/platform/lang-impl/src/com/intellij/refactoring/actions/IntroduceVariableAction.java index 0bad426c840a..946c2dd3cd88 100644 --- a/platform/lang-impl/src/com/intellij/refactoring/actions/IntroduceVariableAction.java +++ b/platform/lang-impl/src/com/intellij/refactoring/actions/IntroduceVariableAction.java @@ -1,5 +1,5 @@ /* - * Copyright 2000-2009 JetBrains s.r.o. + * Copyright 2000-2011 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. @@ -23,9 +23,6 @@ import com.intellij.psi.PsiElement; import com.intellij.refactoring.RefactoringActionHandler; import org.jetbrains.annotations.NotNull; -/** - * - */ public class IntroduceVariableAction extends BasePlatformRefactoringAction { public IntroduceVariableAction() { setInjectedContext(true); diff --git a/platform/platform-api/src/com/intellij/openapi/util/ExceptionMessages.java b/platform/platform-api/src/com/intellij/openapi/util/ExceptionMessages.java index 4f573273ac22..c5d4372bb9f5 100644 --- a/platform/platform-api/src/com/intellij/openapi/util/ExceptionMessages.java +++ b/platform/platform-api/src/com/intellij/openapi/util/ExceptionMessages.java @@ -1,5 +1,5 @@ /* - * Copyright 2000-2009 JetBrains s.r.o. + * Copyright 2000-2011 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. @@ -20,9 +20,6 @@ import com.intellij.CommonBundle; import java.io.IOException; import java.util.HashMap; -/** - * - */ public class ExceptionMessages { static final HashMap ourIOMessages; static { diff --git a/platform/platform-api/src/com/intellij/openapi/vfs/VirtualFileAdapter.java b/platform/platform-api/src/com/intellij/openapi/vfs/VirtualFileAdapter.java index 6a8e338ef0ad..3ff7f15d3008 100644 --- a/platform/platform-api/src/com/intellij/openapi/vfs/VirtualFileAdapter.java +++ b/platform/platform-api/src/com/intellij/openapi/vfs/VirtualFileAdapter.java @@ -1,5 +1,5 @@ /* - * Copyright 2000-2009 JetBrains s.r.o. + * Copyright 2000-2011 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. @@ -15,9 +15,6 @@ */ package com.intellij.openapi.vfs; -/** - * - */ public abstract class VirtualFileAdapter implements VirtualFileListener { public void propertyChanged(VirtualFilePropertyEvent event){ } diff --git a/platform/platform-impl/src/com/intellij/ide/actions/CloseProjectAction.java b/platform/platform-impl/src/com/intellij/ide/actions/CloseProjectAction.java index 7800e7a6a1c2..dc1d92db524f 100644 --- a/platform/platform-impl/src/com/intellij/ide/actions/CloseProjectAction.java +++ b/platform/platform-impl/src/com/intellij/ide/actions/CloseProjectAction.java @@ -1,5 +1,5 @@ /* - * Copyright 2000-2009 JetBrains s.r.o. + * Copyright 2000-2011 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. @@ -24,9 +24,6 @@ import com.intellij.openapi.actionSystem.Presentation; import com.intellij.openapi.project.Project; import com.intellij.openapi.project.DumbAware; -/** - * - */ public class CloseProjectAction extends AnAction implements DumbAware { public void actionPerformed(AnActionEvent e) { Project project = PlatformDataKeys.PROJECT.getData(e.getDataContext()); diff --git a/platform/platform-impl/src/com/intellij/ide/errorTreeView/NewErrorTreeRenderer.java b/platform/platform-impl/src/com/intellij/ide/errorTreeView/NewErrorTreeRenderer.java index facd1eae2fc1..2031517995ea 100644 --- a/platform/platform-impl/src/com/intellij/ide/errorTreeView/NewErrorTreeRenderer.java +++ b/platform/platform-impl/src/com/intellij/ide/errorTreeView/NewErrorTreeRenderer.java @@ -1,5 +1,5 @@ /* - * Copyright 2000-2009 JetBrains s.r.o. + * Copyright 2000-2011 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. @@ -31,9 +31,6 @@ import javax.swing.tree.DefaultMutableTreeNode; import javax.swing.tree.TreeCellRenderer; import java.awt.*; -/** - * - */ public class NewErrorTreeRenderer extends MultilineTreeCellRenderer { private final static Icon ourFileIcon = IconLoader.getIcon("/fileTypes/java.png"); private final static Icon ourErrorIcon = IconLoader.getIcon("/compiler/error.png"); diff --git a/platform/platform-impl/src/com/intellij/ide/errorTreeView/impl/ErrorViewTextExporter.java b/platform/platform-impl/src/com/intellij/ide/errorTreeView/impl/ErrorViewTextExporter.java index 97fe34402c3c..6a298f60ae8c 100644 --- a/platform/platform-impl/src/com/intellij/ide/errorTreeView/impl/ErrorViewTextExporter.java +++ b/platform/platform-impl/src/com/intellij/ide/errorTreeView/impl/ErrorViewTextExporter.java @@ -1,5 +1,5 @@ /* - * Copyright 2000-2009 JetBrains s.r.o. + * Copyright 2000-2011 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. @@ -28,9 +28,6 @@ import java.awt.event.ActionEvent; import java.awt.event.ActionListener; import java.util.TooManyListenersException; -/** - * - */ public class ErrorViewTextExporter implements ExporterToTextFile { private final JCheckBox myCbShowDetails; private final ErrorViewStructure myStructure; diff --git a/platform/platform-impl/src/com/intellij/openapi/command/impl/CommandProcessorImpl.java b/platform/platform-impl/src/com/intellij/openapi/command/impl/CommandProcessorImpl.java index a6bff8320670..71494e542fac 100644 --- a/platform/platform-impl/src/com/intellij/openapi/command/impl/CommandProcessorImpl.java +++ b/platform/platform-impl/src/com/intellij/openapi/command/impl/CommandProcessorImpl.java @@ -1,5 +1,5 @@ /* - * Copyright 2000-2009 JetBrains s.r.o. + * Copyright 2000-2011 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. @@ -35,9 +35,6 @@ import org.jetbrains.annotations.Nullable; import java.util.Stack; import java.util.concurrent.CopyOnWriteArrayList; -/** - * - */ public class CommandProcessorImpl extends CommandProcessorEx { private static class CommandDescriptor { public final Runnable myCommand; diff --git a/platform/platform-impl/src/com/intellij/openapi/editor/ex/util/LexerEditorHighlighter.java b/platform/platform-impl/src/com/intellij/openapi/editor/ex/util/LexerEditorHighlighter.java index c051e51ddd76..b4571513cca1 100644 --- a/platform/platform-impl/src/com/intellij/openapi/editor/ex/util/LexerEditorHighlighter.java +++ b/platform/platform-impl/src/com/intellij/openapi/editor/ex/util/LexerEditorHighlighter.java @@ -1,5 +1,5 @@ /* - * Copyright 2000-2009 JetBrains s.r.o. + * Copyright 2000-2011 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. @@ -41,9 +41,6 @@ import org.jetbrains.annotations.Nullable; import java.util.HashMap; import java.util.Map; -/** - * - */ public class LexerEditorHighlighter implements EditorHighlighter, PrioritizedDocumentListener { private static final Logger LOG = Logger.getInstance("#com.intellij.openapi.editor.ex.util.LexerEditorHighlighter"); private HighlighterClient myEditor; diff --git a/platform/platform-impl/src/com/intellij/openapi/editor/impl/EditorComponentImpl.java b/platform/platform-impl/src/com/intellij/openapi/editor/impl/EditorComponentImpl.java index 5481bcc4eecf..d474edeb4052 100644 --- a/platform/platform-impl/src/com/intellij/openapi/editor/impl/EditorComponentImpl.java +++ b/platform/platform-impl/src/com/intellij/openapi/editor/impl/EditorComponentImpl.java @@ -1,5 +1,5 @@ /* - * Copyright 2000-2009 JetBrains s.r.o. + * Copyright 2000-2011 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. @@ -36,9 +36,6 @@ import java.awt.im.InputContext; import java.awt.im.InputMethodRequests; import java.util.Map; -/** - * - */ public class EditorComponentImpl extends JComponent implements Scrollable, DataProvider, Queryable, TypingTarget { private final EditorImpl myEditor; diff --git a/platform/platform-impl/src/com/intellij/openapi/project/ex/ProjectManagerEx.java b/platform/platform-impl/src/com/intellij/openapi/project/ex/ProjectManagerEx.java index 06c42c95fa93..d971eb44a2f7 100644 --- a/platform/platform-impl/src/com/intellij/openapi/project/ex/ProjectManagerEx.java +++ b/platform/platform-impl/src/com/intellij/openapi/project/ex/ProjectManagerEx.java @@ -1,5 +1,5 @@ /* - * Copyright 2000-2009 JetBrains s.r.o. + * Copyright 2000-2011 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. @@ -27,9 +27,6 @@ import org.jetbrains.annotations.TestOnly; import java.io.IOException; -/** - * - */ public abstract class ProjectManagerEx extends ProjectManager { public static ProjectManagerEx getInstanceEx() { return (ProjectManagerEx)ApplicationManager.getApplication().getComponent(ProjectManager.class); diff --git a/platform/platform-impl/src/com/intellij/openapi/project/impl/ProjectImpl.java b/platform/platform-impl/src/com/intellij/openapi/project/impl/ProjectImpl.java index 9dff3842b9ea..6c46ebbcbccd 100644 --- a/platform/platform-impl/src/com/intellij/openapi/project/impl/ProjectImpl.java +++ b/platform/platform-impl/src/com/intellij/openapi/project/impl/ProjectImpl.java @@ -1,5 +1,5 @@ /* - * Copyright 2000-2009 JetBrains s.r.o. + * Copyright 2000-2011 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. @@ -73,9 +73,6 @@ import java.util.*; import java.util.concurrent.atomic.AtomicBoolean; -/** - * - */ public class ProjectImpl extends ComponentManagerImpl implements ProjectEx { private static final Logger LOG = Logger.getInstance("#com.intellij.project.impl.ProjectImpl"); private static final String PLUGIN_SETTINGS_ERROR = "Plugin Settings Error"; diff --git a/platform/platform-impl/src/com/intellij/openapi/vfs/ex/dummy/DummyFileSystem.java b/platform/platform-impl/src/com/intellij/openapi/vfs/ex/dummy/DummyFileSystem.java index 34496269392c..03700ee22b5d 100644 --- a/platform/platform-impl/src/com/intellij/openapi/vfs/ex/dummy/DummyFileSystem.java +++ b/platform/platform-impl/src/com/intellij/openapi/vfs/ex/dummy/DummyFileSystem.java @@ -1,5 +1,5 @@ /* - * Copyright 2000-2009 JetBrains s.r.o. + * Copyright 2000-2011 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. @@ -22,9 +22,6 @@ import org.jetbrains.annotations.Nullable; import java.io.IOException; -/** - * - */ public class DummyFileSystem extends DeprecatedVirtualFileSystem implements NonPhysicalFileSystem { @NonNls public static final String PROTOCOL = "dummy"; private VirtualFileDirectoryImpl myRoot; diff --git a/platform/platform-impl/src/com/intellij/openapi/vfs/ex/dummy/VirtualFileDataImpl.java b/platform/platform-impl/src/com/intellij/openapi/vfs/ex/dummy/VirtualFileDataImpl.java index 6278e69e0827..a79d0f0a3baa 100644 --- a/platform/platform-impl/src/com/intellij/openapi/vfs/ex/dummy/VirtualFileDataImpl.java +++ b/platform/platform-impl/src/com/intellij/openapi/vfs/ex/dummy/VirtualFileDataImpl.java @@ -1,5 +1,5 @@ /* - * Copyright 2000-2009 JetBrains s.r.o. + * Copyright 2000-2011 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. @@ -22,9 +22,6 @@ import org.jetbrains.annotations.NotNull; import java.io.*; -/** - * - */ class VirtualFileDataImpl extends VirtualFileImpl { private byte[] myContents = ArrayUtil.EMPTY_BYTE_ARRAY; private long myModificationStamp = LocalTimeCounter.currentTime(); diff --git a/platform/platform-impl/src/com/intellij/openapi/vfs/ex/dummy/VirtualFileDirectoryImpl.java b/platform/platform-impl/src/com/intellij/openapi/vfs/ex/dummy/VirtualFileDirectoryImpl.java index 12a49ed7ed6b..80dde6bfd36b 100644 --- a/platform/platform-impl/src/com/intellij/openapi/vfs/ex/dummy/VirtualFileDirectoryImpl.java +++ b/platform/platform-impl/src/com/intellij/openapi/vfs/ex/dummy/VirtualFileDirectoryImpl.java @@ -1,6 +1,6 @@ /* - * Copyright 2000-2009 JetBrains s.r.o. + * Copyright 2000-2011 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. @@ -25,9 +25,6 @@ import java.io.InputStream; import java.io.OutputStream; import java.util.ArrayList; -/** - * - */ class VirtualFileDirectoryImpl extends VirtualFileImpl { private final ArrayList myChildren = new ArrayList(); diff --git a/platform/platform-impl/src/com/intellij/openapi/vfs/ex/dummy/VirtualFileImpl.java b/platform/platform-impl/src/com/intellij/openapi/vfs/ex/dummy/VirtualFileImpl.java index b5d5a24ef099..2d68d40a19b8 100644 --- a/platform/platform-impl/src/com/intellij/openapi/vfs/ex/dummy/VirtualFileImpl.java +++ b/platform/platform-impl/src/com/intellij/openapi/vfs/ex/dummy/VirtualFileImpl.java @@ -1,6 +1,6 @@ /* - * Copyright 2000-2009 JetBrains s.r.o. + * Copyright 2000-2011 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. @@ -22,9 +22,6 @@ import com.intellij.openapi.vfs.VirtualFileWithId; import com.intellij.testFramework.DummyFileIdGenerator; import org.jetbrains.annotations.NotNull; -/** - * - */ abstract class VirtualFileImpl extends VirtualFile implements VirtualFileWithId { private final DummyFileSystem myFileSystem; private final VirtualFileDirectoryImpl myParent; diff --git a/platform/platform-impl/src/com/intellij/ui/plaf/beg/BegMenuBorder.java b/platform/platform-impl/src/com/intellij/ui/plaf/beg/BegMenuBorder.java index c101555922ec..f48dc3bdf815 100644 --- a/platform/platform-impl/src/com/intellij/ui/plaf/beg/BegMenuBorder.java +++ b/platform/platform-impl/src/com/intellij/ui/plaf/beg/BegMenuBorder.java @@ -1,6 +1,6 @@ /* - * Copyright 2000-2009 JetBrains s.r.o. + * Copyright 2000-2011 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. @@ -16,14 +16,11 @@ */ package com.intellij.ui.plaf.beg; -import java.awt.*; import javax.swing.*; import javax.swing.border.AbstractBorder; import javax.swing.plaf.UIResource; +import java.awt.*; -/** - * - */ public class BegMenuBorder extends AbstractBorder implements UIResource { protected static Insets borderInsets = new Insets(2, 2, 2, 2); diff --git a/platform/platform-impl/src/com/intellij/ui/plaf/beg/BegPopupMenuBorder.java b/platform/platform-impl/src/com/intellij/ui/plaf/beg/BegPopupMenuBorder.java index 6c166197b351..d38e6443d551 100644 --- a/platform/platform-impl/src/com/intellij/ui/plaf/beg/BegPopupMenuBorder.java +++ b/platform/platform-impl/src/com/intellij/ui/plaf/beg/BegPopupMenuBorder.java @@ -1,6 +1,6 @@ /* - * Copyright 2000-2009 JetBrains s.r.o. + * Copyright 2000-2011 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. @@ -22,9 +22,6 @@ import javax.swing.border.AbstractBorder; import javax.swing.plaf.UIResource; import java.awt.*; -/** - * - */ public class BegPopupMenuBorder extends AbstractBorder implements UIResource { protected static Insets borderInsets = new Insets(3, 2, 2, 2); protected static Color color1 = new Color(214, 211, 206); diff --git a/platform/util/src/com/intellij/openapi/util/text/LineTokenizer.java b/platform/util/src/com/intellij/openapi/util/text/LineTokenizer.java index 8206638a2f8a..15d25dc34ffe 100644 --- a/platform/util/src/com/intellij/openapi/util/text/LineTokenizer.java +++ b/platform/util/src/com/intellij/openapi/util/text/LineTokenizer.java @@ -1,5 +1,5 @@ /* - * Copyright 2000-2009 JetBrains s.r.o. + * Copyright 2000-2011 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. @@ -22,9 +22,6 @@ import java.util.ArrayList; import java.util.Collections; import java.util.List; -/** - * - */ public class LineTokenizer { private int myOffset = 0; private int myLength = 0; diff --git a/platform/util/src/com/intellij/util/cls/BytePointer.java b/platform/util/src/com/intellij/util/cls/BytePointer.java index 82fb19b7ebfb..d13e4e64eea7 100644 --- a/platform/util/src/com/intellij/util/cls/BytePointer.java +++ b/platform/util/src/com/intellij/util/cls/BytePointer.java @@ -1,5 +1,5 @@ /* - * Copyright 2000-2009 JetBrains s.r.o. + * Copyright 2000-2011 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. @@ -15,9 +15,6 @@ */ package com.intellij.util.cls; -/** - * - */ public class BytePointer { public final byte[] bytes; public int offset; diff --git a/platform/util/src/com/intellij/util/text/StringSearcher.java b/platform/util/src/com/intellij/util/text/StringSearcher.java index 92ae102c22b4..2c1c1faba8e4 100644 --- a/platform/util/src/com/intellij/util/text/StringSearcher.java +++ b/platform/util/src/com/intellij/util/text/StringSearcher.java @@ -1,5 +1,5 @@ /* - * Copyright 2000-2009 JetBrains s.r.o. + * Copyright 2000-2011 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. @@ -21,9 +21,6 @@ import org.jetbrains.annotations.NotNull; import java.util.Arrays; -/** - * - */ public class StringSearcher { private static final Logger LOG = Logger.getInstance("#com.intellij.util.text.StringSearcher"); diff --git a/plugins/groovy/src/org/jetbrains/plugins/groovy/lang/psi/impl/PsiImplUtil.java b/plugins/groovy/src/org/jetbrains/plugins/groovy/lang/psi/impl/PsiImplUtil.java index 02c0638aed9d..3b0af34d927e 100644 --- a/plugins/groovy/src/org/jetbrains/plugins/groovy/lang/psi/impl/PsiImplUtil.java +++ b/plugins/groovy/src/org/jetbrains/plugins/groovy/lang/psi/impl/PsiImplUtil.java @@ -1,5 +1,5 @@ /* - * Copyright 2000-2009 JetBrains s.r.o. + * Copyright 2000-2011 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. @@ -79,9 +79,6 @@ import static org.jetbrains.plugins.groovy.lang.lexer.GroovyTokenTypes.*; import static org.jetbrains.plugins.groovy.lang.lexer.TokenSets.RELATIONS; import static org.jetbrains.plugins.groovy.lang.lexer.TokenSets.SHIFT_SIGNS; -/** - * - */ public class PsiImplUtil { private static final Logger LOG = Logger.getInstance("org.jetbrains.plugins.groovy.lang.psi.impl.PsiImplUtil"); private static final String MAIN_METHOD = "main";