1 19 20 package org.netbeans.modules.project.libraries; 21 22 import org.netbeans.api.project.libraries.Library; 23 import org.netbeans.spi.project.libraries.LibraryImplementation; 24 import org.openide.util.Exceptions; 25 26 30 public abstract class LibraryAccessor { 31 32 public static LibraryAccessor DEFAULT; 33 34 static { 36 try { 37 Object o = Class.forName("org.netbeans.api.project.libraries.Library",true,LibraryAccessor.class.getClassLoader()); 38 } catch (ClassNotFoundException cnf) { 39 Exceptions.printStackTrace(cnf); 40 } 41 } 42 43 public abstract Library createLibrary (LibraryImplementation libraryImplementation); 44 45 } 46 | Popular Tags |