| Classes in this File | Line Coverage | Branch Coverage | Complexity | ||||
| AttributeMapperHandler |
|
| 1.0;1 |
| 1 | package org.webslinger.commons.vfs.handlers.attributes; | |
| 2 | ||
| 3 | import org.apache.commons.vfs.FileName; | |
| 4 | import org.apache.commons.vfs.FileSystemException; | |
| 5 | ||
| 6 | import org.webslinger.commons.vfs.handlers.Handler; | |
| 7 | ||
| 8 | public interface AttributeMapperHandler extends Handler { | |
| 9 | AttributeMapper getAttributeMapper(FileName fileName) throws FileSystemException; | |
| 10 | } |