You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@netbeans.apache.org by tm...@apache.org on 2020/07/15 07:00:20 UTC

[netbeans] branch master updated (6eb672d -> 4e1d445)

This is an automated email from the ASF dual-hosted git repository.

tmysik pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/netbeans.git.


    from 6eb672d  [NETBEANS-4308] Deadlock in SQLEditorSupport
     new 64b5647  [NETBEANS-2981] Add the script path to the PHPStan customizer panel
     new 26dea46  Adjust the PHPStanOptionsPanel
     new c656c39  [NETBEANS-2981] Add the script path to Coding Standards Fixer customizer panel
     new 35be70e  [NETBEANS-2981] Add the script path to the CodeSniffer customizer panel
     new 9fddcce  [NETBEANS-2981] Add the script path to the Mess Detector customizer panel
     new 23d9fa9  Use AnalysisDefaultDocumentListener instead of DafaultDocumentListener of inner classes
     new 4e1d445  Merge pull request #2246 from junichi11/netbeans-2981-add-script-path-to-code-analysis

The 4155 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 .../php/analysis/CodeSnifferAnalyzerImpl.java      |   9 +
 .../analysis/CodingStandardsFixerAnalyzerImpl.java |   9 +
 .../php/analysis/MessDetectorAnalyzerImpl.java     |   8 +
 .../modules/php/analysis/PHPStanAnalyzerImpl.java  |   8 +
 .../analysis/commands/CodingStandardsFixer.java    |   5 +-
 .../php/analysis/commands/MessDetector.java        |  17 +-
 .../modules/php/analysis/commands/PHPStan.java     |   5 +-
 .../analysis/options/AnalysisOptionsValidator.java |  26 +-
 .../options/ValidatorCodeSnifferParameter.java     |  66 +++++
 .../ValidatorCodingStandardsFixerParameter.java    |  61 +++++
 .../options/ValidatorMessDetectorParameter.java    |  10 +-
 .../options/ValidatorPHPStanParameter.java         |  15 +-
 .../ui/AnalysisDefaultDocumentListener.java        |  51 ++++
 .../php/analysis/ui/analyzer/Bundle.properties     |  16 ++
 .../ui/analyzer/CodeSnifferCustomizerPanel.form    |  64 ++++-
 .../ui/analyzer/CodeSnifferCustomizerPanel.java    | 204 +++++++++++---
 .../CodingStandardsFixerCustomizerPanel.form       |  67 ++++-
 .../CodingStandardsFixerCustomizerPanel.java       | 190 ++++++++++---
 .../ui/analyzer/MessDetectorCustomizerPanel.form   |  57 +++-
 .../ui/analyzer/MessDetectorCustomizerPanel.java   | 199 ++++++++++----
 .../ui/analyzer/PHPStanCustomizerPanel.form        |  74 ++++-
 .../ui/analyzer/PHPStanCustomizerPanel.java        | 280 +++++++++++--------
 .../php/analysis/ui/options/Bundle.properties      |   2 +-
 .../ui/options/CodeSnifferOptionsPanel.java        |  71 +----
 .../options/CodingStandardsFixerOptionsPanel.form  |  20 +-
 .../options/CodingStandardsFixerOptionsPanel.java  | 286 ++++++++------------
 .../ui/options/MessDetectorOptionsPanel.java       |  87 +-----
 .../analysis/ui/options/PHPStanOptionsPanel.form   |  31 ++-
 .../analysis/ui/options/PHPStanOptionsPanel.java   | 301 +++++++++------------
 .../modules/php/analysis/util/AnalysisUiUtils.java | 248 +++++++++++++++++
 30 files changed, 1677 insertions(+), 810 deletions(-)
 create mode 100644 php/php.code.analysis/src/org/netbeans/modules/php/analysis/options/ValidatorCodeSnifferParameter.java
 create mode 100644 php/php.code.analysis/src/org/netbeans/modules/php/analysis/options/ValidatorCodingStandardsFixerParameter.java
 create mode 100644 php/php.code.analysis/src/org/netbeans/modules/php/analysis/ui/AnalysisDefaultDocumentListener.java
 create mode 100644 php/php.code.analysis/src/org/netbeans/modules/php/analysis/util/AnalysisUiUtils.java


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@netbeans.apache.org
For additional commands, e-mail: commits-help@netbeans.apache.org

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists