Robert Lichtenberger

Results 25 issues of Robert Lichtenberger

Consider this example: ``` import java.io.IOException; import ca.uhn.hl7v2.*; import ca.uhn.hl7v2.app.Connection; public class HAPITest { public static void main(String[] args) throws IOException, HL7Exception { try(HapiContext context = new DefaultHapiContext()) { //...

As shown in https://mail.openjdk.org/pipermail/openjfx-dev/2023-March/039335.html applications may want to have a "validate on significant user input" mode. While we cannot solve the problem of what constitutes "significant user input", we may...

When running this code with Java 13 in Windows: ``` import java.util.List; import org.jutils.jprocesses.JProcesses; import org.jutils.jprocesses.model.ProcessInfo; public class LeakTest { public static void main(String[] args) throws InterruptedException { JProcesses jpro...

While ProcessInfo.getPid() returns a String JProcesses.kill requires an integer parameter.

As discussed in https://github.com/profesorfalken/jProcesses/issues/32, there is a handle leak when using WM4Java for Java versions beyond 10. This PR works around the problem by explicetly closing the streams of process....

Using this code: QuantityInputField inputField = new QuantityInputField(); inputField.getAvailableUnits().add(Units.SECOND); inputField.getAvailableUnits().add(Units.MINUTE); inputField.getAvailableUnits().add(Units.HOUR); inputField.setUnit(Units.SECOND); inputField.setBaseUnit(Units.SECOND); inputField.setMinimumValue(2.0); inputField.setAutoFixValue(true); inputField.setValue(5.0); I can get an input field in my GUI, but the initial value (5...

The default graphic decoration cannot be modified in any way (e.g. fontsize) at the moment. This should be made possible by: * Changing the return type of net.synedra.validatorfx.DefaultDecoration.createGraphicDecoration(ValidationMessage) to GraphicDecoration...

cf. https://github.com/eclipse/buildship/issues/658 and the workaround described there. Maybe this can help and I don't need to remove module-info.java anytime I want to import the project into eclipse.

help wanted

**Affects:** 6.1.6 --- This is a slight variation of SPR-17340 (#21874) that I've run into. I have a `Payload` class that derives from `Map`: ```java public class Payload extends HashMap...

in: web
type: bug

When trying to integrate PDFViewFX into our application (which has very strict checking of dependencies) we get the following conflict: ``` > Task :checkDuplicates org.openjfx:javafx-controls:19 Variant runtime: | Attribute Name...