View Javadoc
1   /*
2   BooleanExpressionComplexity
3   max = 1
4   tokens = (default)LAND, BAND, LOR, BOR, BXOR
5   
6   
7   */
8   
9   package com.puppycrawl.tools.checkstyle.checks.metrics.booleanexpressioncomplexity;
10  
11  public class InputBooleanExpressionComplexitySmall {
12      public void method() {
13          java.awt.EventQueue.invokeLater(() -> {
14              try {
15                  java.lang.reflect.Method stopDispatching = this.getClass()
16                          .getDeclaredMethod("method", null);
17                  stopDispatching.setAccessible(true);
18                  stopDispatching.invoke(this, null);
19              }
20              catch (java.lang.reflect.InvocationTargetException | NoSuchMethodException
21                      | IllegalAccessException ex) {
22              }
23          });
24      }
25  }