PavelTurk
PavelTurk
### Apache NetBeans version Apache NetBeans 14 ### What happened In `platform/o.n.swing.laf.flatlaf/src/org/netbeans/swing/laf/flatlaf/FlatLightLaf.properties` and `FlatDarkLaf.properties` typo in `nb.output.backgorund` property. At the same time NB ignores `nb.output.background` property. ### How to reproduce...
For all programs we use a JPMS framework that creates a JPMS layer for every component. So, we have framework in boot layer and in one child layer we have...
This is what I have in log file: ``` org.glassfish.jaxb.runtime.v2.runtime.IllegalAnnotationsException: 1 counts of IllegalAnnotationExceptions at [email protected]/org.glassfish.jaxb.runtime.v2.runtime.IllegalAnnotationsException$Builder.check(IllegalAnnotationsException.java:83) ~[jaxb-runtime-4.0.2.jar:?] at [email protected]/org.glassfish.jaxb.runtime.v2.runtime.JAXBContextImpl.getTypeInfoSet(JAXBContextImpl.java:421) ~[jaxb-runtime-4.0.2.jar:?] at [email protected]/org.glassfish.jaxb.runtime.v2.runtime.JAXBContextImpl.(JAXBContextImpl.java:255) ~[jaxb-runtime-4.0.2.jar:?] at [email protected]/org.glassfish.jaxb.runtime.v2.runtime.JAXBContextImpl$JAXBContextBuilder.build(JAXBContextImpl.java:1115) ~[jaxb-runtime-4.0.2.jar:?] at [email protected]/org.glassfish.jaxb.runtime.v2.ContextFactory.createContext(ContextFactory.java:144) ~[jaxb-runtime-4.0.2.jar:?] at...
This is my code: ``` import jakarta.xml.bind.JAXBContext; import jakarta.xml.bind.JAXBException; import jakarta.xml.bind.Marshaller; import jakarta.xml.bind.Unmarshaller; import jakarta.xml.bind.annotation.XmlAttribute; import jakarta.xml.bind.annotation.XmlElement; import jakarta.xml.bind.annotation.XmlRootElement; import jakarta.xml.bind.annotation.adapters.XmlAdapter; import jakarta.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import java.io.StringReader; import java.io.StringWriter; import java.util.HashSet; import...
## Steps to Reproduce Consider the following widget: ```dart class Temp extends StatefulWidget { const Temp({Key? key}) : super(key: key); @override State createState() => _TempState(); } // stores ExpansionPanel state...
When user resizes stage JavaFX gives many events on every pixel change. However, very often it is required to get only one event - when user completes resizing. JavaFX currently...
Let's suppose we have 100.000.000 apples. To show one apple in a row we need 50px. So, number of rows will be 100.000.000 / (window.getWidth() / 50). If a window...
I need to scroll up (row by row) on key pressing. This is my code: ```java public class FlawTest extends Application { private static class FlowRow implements Cell { private...
This is my test code: ```java public class FlawTest extends Application { private static class FlowRow implements Cell { private Integer rowIndex; private final Label label = new Label(); private...
I use virtual flow - and I noticed that on scrolling used java memory added 200 MB. Firstly I thought that something was wrong with my code, but the same...