File tree Expand file tree Collapse file tree 8 files changed +15
-12
lines changed
java/net/seesharpsoft/intellij/plugins/csv
test/java/net/seesharpsoft/intellij/plugins Expand file tree Collapse file tree 8 files changed +15
-12
lines changed Original file line number Diff line number Diff line change 1- package net .seesharpsoft .intellij .plugins .csv ;
1+ package net .seesharpsoft .intellij .plugins .csv . annotation ;
22
33import com .intellij .lang .annotation .Annotation ;
44import com .intellij .lang .annotation .AnnotationHolder ;
99import com .intellij .openapi .util .TextRange ;
1010import com .intellij .psi .PsiElement ;
1111import com .intellij .xml .util .XmlStringUtil ;
12+ import net .seesharpsoft .intellij .plugins .csv .CsvColumnInfo ;
13+ import net .seesharpsoft .intellij .plugins .csv .CsvHelper ;
1214import net .seesharpsoft .intellij .plugins .csv .psi .CsvFile ;
1315import net .seesharpsoft .intellij .plugins .csv .psi .CsvTypes ;
1416import org .jetbrains .annotations .NotNull ;
Original file line number Diff line number Diff line change 1- package net .seesharpsoft .intellij .plugins .csv .intention ;
1+ package net .seesharpsoft .intellij .plugins .csv .inspection ;
22
33import com .intellij .codeInspection .InspectionProfileEntry ;
44import com .intellij .codeInspection .InspectionSuppressor ;
Original file line number Diff line number Diff line change 1- package net .seesharpsoft .intellij .plugins .csv .intention ;
1+ package net .seesharpsoft .intellij .plugins .csv .inspection ;
22
33import com .intellij .codeInspection .*;
44import com .intellij .openapi .diagnostic .Logger ;
1212import com .intellij .util .IncorrectOperationException ;
1313import net .seesharpsoft .intellij .plugins .csv .CsvHelper ;
1414import net .seesharpsoft .intellij .plugins .csv .CsvLanguage ;
15+ import net .seesharpsoft .intellij .plugins .csv .intention .CsvIntentionHelper ;
1516import net .seesharpsoft .intellij .plugins .csv .psi .CsvTypes ;
1617import net .seesharpsoft .intellij .plugins .csv .settings .CsvCodeStyleSettings ;
1718import org .jetbrains .annotations .NonNls ;
Original file line number Diff line number Diff line change 1- package net .seesharpsoft .intellij .plugins .csv ;
1+ package net .seesharpsoft .intellij .plugins .csv . spellchecker ;
22
33import com .intellij .psi .PsiElement ;
44import com .intellij .spellchecker .tokenizer .SpellcheckingStrategy ;
Original file line number Diff line number Diff line change 6969
7070 <colorSettingsPage implementation =" net.seesharpsoft.intellij.plugins.csv.settings.CsvColorSettingsPage" />
7171
72- <annotator language =" csv" implementationClass =" net.seesharpsoft.intellij.plugins.csv.CsvAnnotator" />
72+ <annotator language =" csv" implementationClass =" net.seesharpsoft.intellij.plugins.csv.annotation. CsvAnnotator" />
7373
7474 <spellchecker .support language =" csv"
75- implementationClass =" net.seesharpsoft.intellij.plugins.csv.CsvSpellCheckingStrategy" />
75+ implementationClass =" net.seesharpsoft.intellij.plugins.csv.spellchecker. CsvSpellCheckingStrategy" />
7676
7777 <lang .formatter language =" csv"
7878 implementationClass =" net.seesharpsoft.intellij.plugins.csv.formatter.CsvFormattingModelBuilder" />
9090 enabledByDefault =" true"
9191 groupName =" CSV"
9292 shortName =" CsvValidation"
93- implementationClass =" net.seesharpsoft.intellij.plugins.csv.intention .CsvValidationInspection" />
94- <lang .inspectionSuppressor language =" csv" implementationClass =" net.seesharpsoft.intellij.plugins.csv.intention .CsvInspectionSuppressor" />
93+ implementationClass =" net.seesharpsoft.intellij.plugins.csv.inspection .CsvValidationInspection" />
94+ <lang .inspectionSuppressor language =" csv" implementationClass =" net.seesharpsoft.intellij.plugins.csv.inspection .CsvInspectionSuppressor" />
9595
9696 <intentionAction id =" CsvShiftColumnLeft" order =" FIRST" >
9797 <className >net.seesharpsoft.intellij.plugins.csv.intention.CsvShiftColumnLeftIntentionAction</className >
Original file line number Diff line number Diff line change 1- package net .seesharpsoft .intellij .plugins .csv ;
1+ package net .seesharpsoft .intellij .plugins .csv . annotation ;
22
33import com .intellij .codeInsight .daemon .impl .HighlightInfo ;
44import com .intellij .codeInsight .daemon .impl .HighlightInfoType ;
2121import java .util .Iterator ;
2222import java .util .List ;
2323
24- import static net .seesharpsoft .intellij .plugins .csv .CsvAnnotator .CSV_COLUMN_INFO_SEVERITY ;
24+ import static net .seesharpsoft .intellij .plugins .csv .annotation . CsvAnnotator .CSV_COLUMN_INFO_SEVERITY ;
2525
2626public class CsvAnnotatorTest extends LightCodeInsightFixtureTestCase {
2727
Original file line number Diff line number Diff line change 1- package net .seesharpsoft .intellij .plugins .csv .intention ;
1+ package net .seesharpsoft .intellij .plugins .csv .inspection ;
22
33import com .intellij .codeInsight .intention .IntentionAction ;
44import com .intellij .testFramework .fixtures .LightCodeInsightFixtureTestCase ;
Original file line number Diff line number Diff line change 22
33import com .intellij .codeInsight .intention .IntentionAction ;
44import com .intellij .testFramework .fixtures .LightCodeInsightFixtureTestCase ;
5- import net .seesharpsoft .intellij .plugins .csv .intention .CsvValidationInspection ;
5+ import net .seesharpsoft .intellij .plugins .csv .inspection .CsvValidationInspection ;
66
77public class TsvInspectionTest extends LightCodeInsightFixtureTestCase {
88
You can’t perform that action at this time.
0 commit comments