01: package org.netbeans.test.editor.smartcompletion; 02: 03: import java.util.List; 04: 05: public class Assign { 06: 07: Double d1; 08: Double d2; 09: Number n1; 10: String s1; 11: 12: public void method(Double p1, Number p2) { 13: 14: } 15: 16: public String getName() { 17: return null; 18: } 19: }