View Javadoc
1   package de.japrost.qa.checkstyle.imports;
2   
3   // static star import
4   import static java.lang.Boolean.*;
5   // static regular import
6   import static java.lang.System.out;
7   
8   // package star import
9   import java.util.*;
10  // regular import
11  import java.math.BigDecimal;
12  
13  /**
14   * Test the AvoidStarImport checkstyle rules.
15   */
16  public class AvoidStarImport {
17  	public void doStuff() {
18  		Boolean b = TRUE;
19  		out.println(b);
20  		List<BigDecimal> list = Collections.emptyList();
21  		list.isEmpty();
22  	}
23  }