aboutsummaryrefslogtreecommitdiff
path: root/src/test/resources-noncompilable/com/puppycrawl/tools/checkstyle/checks/imports/InputDefaultPackage.java
blob: b47a86d31c5a5613d03f17f55b0c22bebe5d0cdd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
//Compilable by javac, but noncompilable by eclipse

//////////////////////////////////////////
//Some header
//////////////////////////////////////////
import static java.io.File.createTempFile;
import static java.awt.Button.ABORT;
import static javax.swing.WindowConstants.*;

import java.awt.Button;
import java.awt.Frame;
import java.awt.Dialog;
import java.awt.event.ActionEvent;
import javax.swing.JComponent;
import javax.swing.JTable;
import java.io.File;
import java.io.IOException;
import java.io.InputStream;
import java.io.Reader;

import com.puppycrawl.tools.*;

import com.google.common.*;
import org.apache.*;

public class InputDefaultPackage {
}