// This rule specifies whetheryou are allowd to use '.*'  
// imports or not. '.*'-imports make the source shorter
// but don't show exactly on which classes this class does
// depend on.

// Fully qualified import  
import com.company.util.FooClass;
import com.company.util.BlaFooClass;
import com.company.util.AnotherFooClass;

// *. - import  
import com.company.util.*;