01: package markOccurrences; 02: 03: import javax.swing.JTable; 04: 05: public class Test5 { 06: 07: public void local(double number, JTable table) { 08: int counter = 1; 09: System.out.println(number); 10: while (counter < number) { 11: counter = counter + 1; 12: System.out.println(counter); 13: } 14: } 15: 16: }