r4fterman/pdf.forms

View on GitHub

Showing 2,278 of 2,280 total issues

Method write has 5 arguments (exceeds 4 allowed). Consider refactoring.
Open

            final IWidget widget,
            final Rectangle pageSize,
            final int currentPage,
            final PdfWriter writer,
            final GlobalPdfWriter globalPdfWriter) {
Severity: Minor
Found in src/main/java/org/pdf/forms/writer/PdfImageWriter.java - About 35 mins to fix

    Method getListCellRendererComponent has 5 arguments (exceeds 4 allowed). Consider refactoring.
    Open

                    final JList<? extends String> list,
                    final String value,
                    final int index,
                    final boolean isSelected,
                    final boolean cellHasFocus) {
    Severity: Minor
    Found in src/main/java/org/pdf/forms/gui/library/LibraryPanel.java - About 35 mins to fix

      Method decodePDFPage has 5 arguments (exceeds 4 allowed). Consider refactoring.
      Open

                  final PdfDecoder pdfDecoder,
                  final String pdfPath,
                  final int pdfPageNumber,
                  final Page newPage,
                  final List<IWidget> widgetsOnPage) {
      Severity: Minor
      Found in src/main/java/org/pdf/forms/gui/commands/PDFImportWorker.java - About 35 mins to fix

        Method write has 5 arguments (exceeds 4 allowed). Consider refactoring.
        Open

                    final IWidget widget,
                    final Rectangle pageSize,
                    final int currentPage,
                    final PdfWriter writer,
                    final GlobalPdfWriter globalPdfWriter) throws IOException, DocumentException {
        Severity: Minor
        Found in src/main/java/org/pdf/forms/writer/PdfButtonWriter.java - About 35 mins to fix

          Method write has 5 arguments (exceeds 4 allowed). Consider refactoring.
          Open

                      final IWidget widget,
                      final Rectangle pageSize,
                      final int currentPage,
                      final PdfWriter writer,
                      final GlobalPdfWriter globalPdfWriter) throws IOException, DocumentException {
          Severity: Minor
          Found in src/main/java/org/pdf/forms/writer/PdfComboBoxWriter.java - About 35 mins to fix

            Method createSequentialGroup has 5 arguments (exceeds 4 allowed). Consider refactoring.
            Open

                        final JLabel labelForTextFieldA,
                        final JTextField textFieldA,
                        final JLabel labelForTextFieldB,
                        final JTextField textFieldB,
                        final GroupLayout groupLayout) {

              Method getListCellRendererComponent has 5 arguments (exceeds 4 allowed). Consider refactoring.
              Open

                          final JList list,
                          final Object value,
                          final int index,
                          final boolean isSelected,
                          final boolean cellHasFocus) {

                Method write has 5 arguments (exceeds 4 allowed). Consider refactoring.
                Open

                            final IWidget widget,
                            final Rectangle pageSize,
                            final int currentPage,
                            final PdfWriter writer,
                            final GlobalPdfWriter globalPdfWriter) {
                Severity: Minor
                Found in src/main/java/org/pdf/forms/writer/PdfRadioButtonWriter.java - About 35 mins to fix

                  Method writeExternalPDFPagesToPDF has 5 arguments (exceeds 4 allowed). Consider refactoring.
                  Open

                              final File fileToWriteTo,
                              final Map<Integer, List<IWidget>> widgetsByPageNumber,
                              final List<org.pdf.forms.model.des.Page> pages,
                              final Optional<String> javaScript,
                              final PdfDocumentLayout pdfDocumentLayout) {
                  Severity: Minor
                  Found in src/main/java/org/pdf/forms/writer/Writer.java - About 35 mins to fix

                    Method handleButtonGroups has 5 arguments (exceeds 4 allowed). Consider refactoring.
                    Open

                                final PdfWriter writer,
                                final List<IWidget> widgets,
                                final Rectangle pageSize,
                                final int currentPage,
                                final GlobalPdfWriter globalPdfWriter) throws IOException, DocumentException {
                    Severity: Minor
                    Found in src/main/java/org/pdf/forms/writer/Writer.java - About 35 mins to fix

                      Method write has 5 arguments (exceeds 4 allowed). Consider refactoring.
                      Open

                                  IWidget widget,
                                  Rectangle pageSize,
                                  int currentPage,
                                  PdfWriter writer,
                                  GlobalPdfWriter globalPdfWriter) throws IOException, DocumentException;
                      Severity: Minor
                      Found in src/main/java/org/pdf/forms/writer/PdfComponentWriter.java - About 35 mins to fix

                        Method underlineWord has 5 arguments (exceeds 4 allowed). Consider refactoring.
                        Open

                                    final Graphics graphics,
                                    final String text,
                                    final FontMetrics f,
                                    final int x,
                                    final int y) {
                        Severity: Minor
                        Found in src/main/java/org/pdf/forms/widgets/components/PdfCaption.java - About 35 mins to fix

                          Method underlineWord has 5 arguments (exceeds 4 allowed). Consider refactoring.
                          Open

                                      final Graphics graphics,
                                      final String text,
                                      final FontMetrics f,
                                      final int x,
                                      final int y) {
                          Severity: Minor
                          Found in src/main/java/org/pdf/forms/widgets/components/PdfTextField.java - About 35 mins to fix

                            Method underlineWord has 5 arguments (exceeds 4 allowed). Consider refactoring.
                            Open

                                        final Graphics graphics,
                                        final String text,
                                        final FontMetrics fontMetrics,
                                        final int x,
                                        final int y) {
                            Severity: Minor
                            Found in src/main/java/org/pdf/forms/widgets/components/PdfButton.java - About 35 mins to fix

                              Similar blocks of code found in 2 locations. Consider refactoring.
                              Open

                                  private void selectFontNameInComboBox(final Set<IWidget> widgets) {
                                      final String fontNameToUse = getFontName(widgets);
                                      if (fontNameToUse.equals("mixed")) {
                                          setComboValue(this.fontBox, null);
                                      } else {
                              src/main/java/org/pdf/forms/gui/toolbars/WidgetPropertiesToolBar.java on lines 210..217

                              Duplicated Code

                              Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

                              Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

                              When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

                              Tuning

                              This issue has a mass of 46.

                              We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

                              The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

                              If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

                              See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

                              Refactorings

                              Further Reading

                              Similar blocks of code found in 2 locations. Consider refactoring.
                              Open

                                  private void selectFontSizeInComboBox(final Set<IWidget> widgets) {
                                      final String fontSizeToUse = getFontSize(widgets);
                                      if (fontSizeToUse.equals("mixed")) {
                                          setComboValue(this.fontSize, null);
                                      } else {
                              src/main/java/org/pdf/forms/gui/toolbars/WidgetPropertiesToolBar.java on lines 201..208

                              Duplicated Code

                              Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

                              Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

                              When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

                              Tuning

                              This issue has a mass of 46.

                              We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

                              The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

                              If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

                              See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

                              Refactorings

                              Further Reading

                              Similar blocks of code found in 2 locations. Consider refactoring.
                              Open

                                      if (file.exists()) {
                                          final int value = JOptionPane.showConfirmDialog(
                                                  (Component) mainFrame,
                                                  "The file already exists, are you sure you wish to overwrite?",
                                                  "File already exists",
                              src/main/java/org/pdf/forms/gui/commands/PublishPdfCommand.java on lines 39..48

                              Duplicated Code

                              Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

                              Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

                              When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

                              Tuning

                              This issue has a mass of 46.

                              We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

                              The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

                              If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

                              See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

                              Refactorings

                              Further Reading

                              Similar blocks of code found in 2 locations. Consider refactoring.
                              Open

                                  public RadioButtonGroupOrganiser(
                                          final JDialog parentDialog,
                                          final List<ButtonGroup> radioButtonGroups,
                                          final List<IWidget> widgetsOnPage) {
                                      this.parentDialog = parentDialog;
                              src/main/java/org/pdf/forms/gui/windows/CheckBoxButtonGroupOrganiser.java on lines 27..38

                              Duplicated Code

                              Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

                              Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

                              When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

                              Tuning

                              This issue has a mass of 46.

                              We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

                              The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

                              If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

                              See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

                              Refactorings

                              Further Reading

                              Similar blocks of code found in 2 locations. Consider refactoring.
                              Open

                                          if (file.exists()) {
                                              final int value = JOptionPane.showConfirmDialog(
                                                      (Component) mainFrame,
                                                      "The file already exists, are you sure you wish to overwrite?",
                                                      "File already exists",
                              Severity: Minor
                              Found in src/main/java/org/pdf/forms/gui/commands/PublishPdfCommand.java and 1 other location - About 35 mins to fix
                              src/main/java/org/pdf/forms/gui/commands/SaveDesignerFileAsCommand.java on lines 58..67

                              Duplicated Code

                              Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

                              Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

                              When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

                              Tuning

                              This issue has a mass of 46.

                              We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

                              The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

                              If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

                              See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

                              Refactorings

                              Further Reading

                              Similar blocks of code found in 2 locations. Consider refactoring.
                              Open

                                  public CheckBoxButtonGroupOrganiser(
                                          final JDialog parentDialog,
                                          final List<ButtonGroup> checkBoxButtonGroups,
                                          final List<IWidget> widgetsOnPage) {
                                      this.parentDialog = parentDialog;
                              src/main/java/org/pdf/forms/gui/windows/RadioButtonGroupOrganiser.java on lines 27..38

                              Duplicated Code

                              Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

                              Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

                              When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

                              Tuning

                              This issue has a mass of 46.

                              We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

                              The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

                              If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

                              See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

                              Refactorings

                              Further Reading

                              Severity
                              Category
                              Status
                              Source
                              Language