1 19 20 package org.netbeans.modules.project.ui; 21 22 import java.net.URL ; 23 import javax.swing.Icon ; 24 25 import org.netbeans.modules.project.ui.api.UnloadedProjectInformation; 26 27 31 public abstract class ProjectInfoAccessor { 32 33 public static ProjectInfoAccessor DEFAULT; 34 35 static { 36 Class c = UnloadedProjectInformation.class; 37 try { 38 Class.forName(c.getName(), true, c.getClassLoader()); 39 } catch (ClassNotFoundException cnfe) { 40 assert false : cnfe; 41 } 42 assert DEFAULT != null; 43 } 44 45 public abstract UnloadedProjectInformation getProjectInfo(String dn, Icon ic, URL ur); 46 47 } 48 | Popular Tags |