1 19 20 package org.netbeans.modules.ant.freeform; 21 22 import org.netbeans.modules.ant.freeform.spi.ProjectAccessor; 23 24 28 public abstract class Accessor { 29 30 protected static Accessor DEFAULT = null; 31 32 static { 33 Class c = ProjectAccessor.class; 36 try { 37 Class.forName(c.getName(), true, c.getClassLoader()); 38 } catch (Exception ex) { 39 ex.printStackTrace(); 40 } 41 } 42 43 public abstract ProjectAccessor createProjectAccessor(FreeformProject desc); 44 } 45 | Popular Tags |