| Classes in this File | Line Coverage | Branch Coverage | Complexity | ||||
| COWFileMapping |
|
| 1.0;1 |
| 1 | package org.webslinger.commons.vfs.tests; | |
| 2 | ||
| 3 | public final class COWFileMapping { | |
| 4 | public final String viewPath; | |
| 5 | public final String cowPath; | |
| 6 | public final String name; | |
| 7 | ||
| 8 | 12 | public COWFileMapping(String viewPath, String cowPath, String name) { |
| 9 | 12 | this.viewPath = viewPath; |
| 10 | 12 | this.cowPath = cowPath; |
| 11 | 12 | this.name = name; |
| 12 | 12 | } |
| 13 | } |