mirror of
https://github.com/overcuriousity/autopsy-flatpak.git
synced 2025-07-06 21:00:22 +00:00
minor comments FilteredEventsModel.java and ivy.xml
This commit is contained in:
parent
a0569da249
commit
c55c42c99d
@ -162,10 +162,20 @@ public final class FilteredEventsModel {
|
|||||||
requestedZoomParamters.bind(currentStateProperty);
|
requestedZoomParamters.bind(currentStateProperty);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Readonly observable property for the current ZoomParams
|
||||||
|
*
|
||||||
|
* @return A readonly observable property for the current ZoomParams.
|
||||||
|
*/
|
||||||
synchronized public ReadOnlyObjectProperty<ZoomParams> zoomParametersProperty() {
|
synchronized public ReadOnlyObjectProperty<ZoomParams> zoomParametersProperty() {
|
||||||
return requestedZoomParamters.getReadOnlyProperty();
|
return requestedZoomParamters.getReadOnlyProperty();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Get the current ZoomParams
|
||||||
|
*
|
||||||
|
* @return The current ZoomParams
|
||||||
|
*/
|
||||||
synchronized public ZoomParams getZoomParamaters() {
|
synchronized public ZoomParams getZoomParamaters() {
|
||||||
return requestedZoomParamters.get();
|
return requestedZoomParamters.get();
|
||||||
}
|
}
|
||||||
|
@ -43,6 +43,7 @@
|
|||||||
<dependency conf="autopsy_core->*" org="org.jfxtras" name="jfxtras-fxml" rev="8.0-r4" />
|
<dependency conf="autopsy_core->*" org="org.jfxtras" name="jfxtras-fxml" rev="8.0-r4" />
|
||||||
<dependency conf="autopsy_core->*" org="org.jfxtras" name="jfxtras-controls" rev="8.0-r4" />
|
<dependency conf="autopsy_core->*" org="org.jfxtras" name="jfxtras-controls" rev="8.0-r4" />
|
||||||
<dependency conf="autopsy_core->*" org="org.jfxtras" name="jfxtras-common" rev="8.0-r4" />
|
<dependency conf="autopsy_core->*" org="org.jfxtras" name="jfxtras-common" rev="8.0-r4" />
|
||||||
|
<!-- templateing engine used by timeline to generate its snapshot report -->
|
||||||
<dependency conf="autopsy_core->*" org="com.github.spullara.mustache.java" name="compiler" rev="0.9.1" />
|
<dependency conf="autopsy_core->*" org="com.github.spullara.mustache.java" name="compiler" rev="0.9.1" />
|
||||||
|
|
||||||
<!-- image support for autopsy and image gallery -->
|
<!-- image support for autopsy and image gallery -->
|
||||||
|
Loading…
x
Reference in New Issue
Block a user