File tree 1 file changed +11
-2
lines changed
src/main/java/net/celltrackingchallenge/measures 1 file changed +11
-2
lines changed Original file line number Diff line number Diff line change @@ -57,7 +57,10 @@ public class TrackDataCache
57
57
///shortcuts to some Fiji services
58
58
private final Logger log ;
59
59
60
- ///a constructor requiring connection to Fiji report/log services
60
+ /**
61
+ * Construct and connect to Fiji report/log services.
62
+ * @param _log Logger from the scijava
63
+ */
61
64
public TrackDataCache (final Logger _log )
62
65
{
63
66
//check that non-null was given for _log!
@@ -75,7 +78,13 @@ public TrackDataCache(final Logger _log)
75
78
///GT and RES paths combination for which this cache is valid, null means invalid
76
79
private String resPath = null ;
77
80
78
- ///reference-based-only check if the parameters are those on which this cache was computed
81
+ /**
82
+ * Reference-based-only check if the parameters are those on which this cache was computed.
83
+ *
84
+ * @param _gtPath Was this cache recently operated against this GT data folder?
85
+ * @param _resPath Was this cache recently operated against this result data folder?
86
+ * @return Returns true if this cache was operated also against the provided folders.
87
+ */
79
88
public boolean validFor (final String _gtPath , final String _resPath )
80
89
{
81
90
return ( gtPath != null && resPath != null
You can’t perform that action at this time.
0 commit comments