1 package org.netbeans.test.cleanup; 2 3 import java.util.List ; 4 import java.util.Map ; 5 import javax.swing.JButton ; 6 import javax.swing.JList ; 7 import javax.swing.JScrollPane ; 8 import javax.swing.JTable ; 9 10 13 public class RemoveGenericsImports { 14 15 public RemoveGenericsImports() { 16 } 17 18 public <T extends JButton > List <T> buttonListMethod(T t) { 19 return null; 20 } 21 22 public Map <JScrollPane , List <JTable >> scrollPaneTableMethod() { 23 return null; 24 } 25 26 private List <JList > llistListMethod() { 27 return null; 28 } 29 30 } 31 | Popular Tags |