import java.util.Vector; public class PermsInt { public static void main(String[] args) { Perms p = new Perms (); Vector things = new Vector (); for (int i=0; i sset : p.permute(things)) { for (Integer s : sset) { System.out.print(s+" "); } System.out.println(); } } }