1 19 20 package org.netbeans.modules.project.ui.api; 21 22 import java.net.URL ; 23 import javax.swing.Icon ; 24 25 import org.netbeans.modules.project.ui.ProjectInfoAccessor; 26 27 32 public final class UnloadedProjectInformation { 33 34 private String displayName; 35 private Icon icon; 36 private URL url; 37 38 static { 39 ProjectInfoAccessor.DEFAULT = new ProjectInfoAccessorImpl(); 40 } 41 42 45 UnloadedProjectInformation(String displayName, Icon icon, URL url) { 46 this.displayName = displayName; 47 this.icon = icon; 48 this.url = url; 49 } 50 51 56 public String getDisplayName() { 57 return displayName; 58 } 59 60 65 public Icon getIcon() { 66 return icon; 67 } 68 69 74 public URL getURL() { 75 return url; 76 } 77 78 } 79 | Popular Tags |