Files
2009-09-10 19:49:38 +04:00

8 lines
145 B
Java

import javax.swing.*;
class Test {
public static JComponent getFoo() {
JComponent c = new JPanel();
return <caret>c;
}
}