1 19 20 package org.netbeans.modules.masterfs.providers; 21 22 import java.awt.Image ; 23 import java.beans.PropertyVetoException ; 24 import java.io.IOException ; 25 import org.openide.filesystems.FileSystem; 26 27 41 public abstract class AutoMountProvider { 42 52 public abstract FileSystem createFileSystem (String mountPoint) throws IOException , PropertyVetoException ; 53 54 64 public abstract boolean isRootOfFileSystem (String mountPoint); 65 66 75 public Image getIcon (String mountPoint, int iconType) { 76 return null; 77 } 78 79 } 80 | Popular Tags |