1 package org.columba.core.gui.profiles; 19 20 import java.io.File ; 21 22 28 public class Profile { 29 30 private String name; 31 32 private File location; 33 34 public Profile(String name, File location) { 35 this.name = name; 36 this.location = location; 37 } 38 39 42 public File getLocation() { 43 return location; 44 } 45 46 49 public String getName() { 50 return name; 51 } 52 } | Popular Tags |