1 19 20 package org.netbeans.modules.masterfs; 21 22 import org.netbeans.modules.masterfs.providers.MountSupport; 23 24 28 public abstract class APIAccess { 29 static { 30 Class c = MountSupport.class; 31 try { 32 Class.forName(c.getName(), true, c.getClassLoader()); 33 } catch (Exception ex) { 34 ex.printStackTrace(); 35 } 36 } 37 38 public static APIAccess DEFAULT; 39 40 public abstract MountSupport createMountSupport(InternalMountSupport sup); 41 } 42 | Popular Tags |