View Javadoc
1   package org.checkstyle.suppressionxpathfilter.classdataabstractioncoupling;
2   
3   import java.io.ByteArrayInputStream;
4   import java.io.CharArrayWriter;
5   import java.io.File;
6   import java.io.StringWriter;
7   
8   import java.math.BigDecimal;
9   import java.math.BigInteger;
10  import java.math.MathContext;
11  
12  import java.util.concurrent.atomic.AtomicInteger;
13  
14  public class InputXpathClassDataAbstractionCouplingClass { // warn
15      AtomicInteger atomicInteger = new AtomicInteger();
16      BigInteger bigInteger = new BigInteger("0");
17      BigDecimal bigDecimal = new BigDecimal("0");
18      MathContext mathContext = new MathContext(0);
19      ByteArrayInputStream byteArrayInputStream = new ByteArrayInputStream(new byte[1]);
20      CharArrayWriter charArrayWriter = new CharArrayWriter();
21      StringWriter stringWriter = new StringWriter();
22      File file = new File("path");
23  }