scijava-ui-swing
repo contains all the widget implementations for Swing, e.g. SwingNumberWidget
.
#@
parameters is achieved by ParameterScriptProcessor
in scijava-common
.
LegacyUI
from imagej-legacy; it has higher priority than the SwingSDIUI
from imagej-ui-swing. If you exclude imagej-legacy than imagej-ui-swing's takes precedence. If you have a barebones environment without those, then the HeadlessUI
of scijava-common is picked up.
imagej-legacy
issue. I am looking at String => ImagePlus
and String => Dataset
conversion for opened images, and added a test (imagej/imagej-legacy@b13c8f9) that I am planning to flesh out to cover most use cases. JaCoCo tells me that this line in StringToImagePlusConverter
is never executed.canConvert(Object, Class)
to canConvert(Object, Type)
, then it hangs in the test. I suspect some infinite loop, but can’t wrap my head around it. Do you have any ideas/pointers?
LegacyInjector.preinit()
into the static block, but even this didn't work for me.)
imp1
and imp2
field declarations and just making them local vars.
ImagePlus
/Dataset
conversion (mostly for macro calls), and I am puzzled why some of my tests pass where I’d expect them to fail. See https://github.com/imagej/imagej-legacy/pull/261#issuecomment-753386846.