User Rastislav Komara - Stack Overflow most recent 30 from stackoverflow.com 2009-12-01T12:32:35Z http://stackoverflow.com/feeds/user/22068 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1590923/java-6-and-swingutilities2/1599624#1599624 1 Answer by Rastislav Komara for Java 6 and SwingUtilities2 Rastislav Komara 2009-10-21T09:11:37Z 2009-10-21T09:11:37Z <p>The only correct way (out of hacking) is to ask vendor to fix and rebuild this component to Java 6. The possible working way is copy sun.swing.SU2 to com.sun...SU2 and package it into separate jar (e.g. java6fix.jar) and try to run your application. It will be fine if you add this patch jar into jvm bootclasspath. The best patch should be to create own com.sun..SU2 and delegate all calls to sun.swing.SU2. And take a look for different version of component which support Java6 maybe also from different vendor. Also if the problem is only in the mentioned line <code>((Boolean)c.getClientProperty(AA_TEXT_PROPERTY_KEY));</code> then you may put your own client property for this component to prevent NPE. When you take this path you can just simply create your own com.sun...SU2.AA_TEXT_PROPERTY_KEY and call c.setClientProperty(AA_TEXT_PROPERTY_KEY, true) on this component. Also try to disable anti aliasing check on component if possible. </p> http://stackoverflow.com/questions/1489585/make-header-text-bold-when-its-column-is-selected-in-jtable/1508237#1508237 0 Answer by Rastislav Komara for Make header text bold when its column is selected in JTable Rastislav Komara 2009-10-02T08:01:06Z 2009-10-02T08:01:06Z <p>Set custom renderer into table header. If current column is selected column set font to bold.</p> <pre><code>JTable table = new JTable() table.getTableHeader().setDefaultRenderer(new MyRenderer()); class MyRenderer implements TableCellRenderer { //todo implement } </code></pre> http://stackoverflow.com/questions/1418618/javafx-url-proxy/1419962#1419962 2 Answer by Rastislav Komara for JavaFX url-proxy? Rastislav Komara 2009-09-14T06:27:30Z 2009-09-14T06:27:30Z <p><a href="http://forums.sun.com/thread.jspa?threadID=5404464" rel="nofollow">Setting proxy in Java/FX</a></p> http://stackoverflow.com/questions/1346723/javafx-or-ria-desktop-app-on-dvd-also-available-on-the-web/1371752#1371752 0 Answer by Rastislav Komara for JavaFX or RIA desktop app (on dvd) also available on the web? Rastislav Komara 2009-09-03T06:47:17Z 2009-09-03T06:47:17Z <p>Yes, it is possible. If you use JavaFX you will be allowed use multiple deployments. For example, NetBeans 6.7.1 with JavaFX creates several possible deployments from one project. Then you can publish this application on web, DVD, etc. You will need to slightly customize standalone deployment for DVD to be able e.g. start it as autorun if necessary. JavaFX is good choice. </p> http://stackoverflow.com/questions/1349220/convert-jpanel-to-image/1350665#1350665 0 Answer by Rastislav Komara for Convert JPanel to image Rastislav Komara 2009-08-29T06:31:21Z 2009-08-29T06:31:21Z <p>Take a look at BasicTableUI. The cell renderer is drawn on image without showing and then drawn on visible table component.</p> http://stackoverflow.com/questions/1336418/javafx-scrollbar/1346364#1346364 1 Answer by Rastislav Komara for javafx scrollbar Rastislav Komara 2009-08-28T11:14:00Z 2009-08-28T11:14:00Z <p>You can try to bind <code>value</code> of scrollbar to translateX (or Y) of image. And of course set min and max of scrollbar to 0, image.width (.height)</p> http://stackoverflow.com/questions/1318645/javafx-or-swing/1318817#1318817 0 Answer by Rastislav Komara for JavaFX or Swing? Rastislav Komara 2009-08-23T15:32:59Z 2009-08-23T15:32:59Z <p>there is several issues with JavaFX which Swing already solved. Also, it is really young technology making baby-steps. I suggest to consider all aspects. Both has pros and cons. Swing has a lot of resources. JavaFX is simpler in dealing with RIA kind of interfaces. So try both, and decide based on gained experience. But the JavaFX is worth of your time.</p> http://stackoverflow.com/questions/1281582/how-to-find-out-the-instance-when-component-resize-is-complete/1283765#1283765 0 Answer by Rastislav Komara for How to find out the instance when component resize is complete Rastislav Komara 2009-08-16T08:21:43Z 2009-08-16T08:21:43Z <p>This is not possible. But you can use <a href="http://stackoverflow.com/questions/143341/are-there-any-frameworks-for-handling-database-requests-in-swing-applications/143689#143689">SingleWorkerThread</a> to minimalize the number of events processed.</p> http://stackoverflow.com/questions/1281956/detecting-drops-from-the-same-process/1283743#1283743 0 Answer by Rastislav Komara for Detecting drops from the same process Rastislav Komara 2009-08-16T08:08:51Z 2009-08-16T08:08:51Z <p>In general no. Marker DataFlavor is possible. In general, in DnD there is no need to know if I'm in or out. If I can convert data into way I can handle, then it is OK. Else I'm not interested. </p> http://stackoverflow.com/questions/1282865/java-swing-jlist-with-listcellrenderer-selected-item-different-height/1283740#1283740 2 Answer by Rastislav Komara for Java Swing: JList with ListCellRenderer selected item different height Rastislav Komara 2009-08-16T08:04:26Z 2009-08-16T08:04:26Z <p>The JList has no ability to change size of cell depending on selection or whatever. The list use "cached" sizes. If there is new cellRenderer provided this sizes are recounted and applied within all cells in list. I think the reason is performance for list with a lot of entries. The possible solution is to write own ListUI implementation which is able to use different sizes for selected and unselected cells. This brings also possibility to adjust size of cells around selection by logarithm or other interpolation. I hope you have a big reason why to do this. It is a lot of work!</p> http://stackoverflow.com/questions/1263323/tristate-checkboxes-in-java/1265161#1265161 0 Answer by Rastislav Komara for Tristate Checkboxes in Java Rastislav Komara 2009-08-12T09:28:58Z 2009-08-12T09:28:58Z <p>Change the UI. Tristate check-box is unusual and can really confuse users. The drop down is good option but for more then one occurrence within dialog it will also bring a lot of confusion to user.</p> http://stackoverflow.com/questions/1193393/javafx-eclipse-rcp-good-idea-bad-idea-other-ideas/1198872#1198872 0 Answer by Rastislav Komara for [JavaFx//Eclipse RCP] Good idea / Bad idea (/other ideas ?) Rastislav Komara 2009-07-29T08:54:20Z 2009-07-29T08:54:20Z <p>The answer is simple. No, you can't use JavaFX yet. The problem is that JFX script can't be embedded into Swing nor Eclipse SWT. We already know about such an issues. (The is some kind of hack how to embed JFX into Swing APP only.) </p> http://stackoverflow.com/questions/1072383/how-to-implement-list-set-and-map-in-null-free-design/1073481#1073481 0 Answer by Rastislav Komara for How to implement List, Set, and Map in null free design? Rastislav Komara 2009-07-02T09:46:04Z 2009-07-02T09:46:04Z <p>Conceptually it is a big problem. One of useful scenarios is to create adapter which delegates all calls into underlying map object. For this adapter there will be required parameter which specify <code>null</code> object. E.g:</p> <pre><code>class MapAdapter&lt;K,V&gt; implements Map&lt;K,V&gt; { private Map&lt;K,V&gt; inner = new HashMap&lt;K,V&gt;(); private final V nullObject; private MapAdapter(V nullObject) { this.nullObject = nullObject; } public static &lt;K,V&gt; Map&lt;K,V&gt; adapt(Map&lt;K,V&gt; mapToAdapt, V nullObject) { MapAdapter&lt;K,V&gt; adapter = new MapAdapter&lt;K,V&gt;(nullObject); adapter.inner.addAll(mapToAdapt); return adapter; } //Here comes implementation of methods delegating to inner. public V get(K key) { if (inner.containsKey(key)) { return inner.get(key); } return nullObject; } } </code></pre> <p>A lot of work, but it allows generic NullSafe implementation.</p> http://stackoverflow.com/questions/1063528/paintcomponent-takes-a-long-time-ties-up-the-swing-event-dispatch-thread/1064114#1064114 1 Answer by Rastislav Komara for PaintComponent Takes a Long Time, Ties up the Swing Event Dispatch Thread Rastislav Komara 2009-06-30T14:53:15Z 2009-06-30T14:53:15Z <p>Use background image which is updated by special working thread. Then in JPanel's paintComponent() method just paint this image. The strategy is called double-buffering. You have background and foreground image. If separate thread finish the painting of data then set this image as foreground and foreground load as background. Invalidate JPanel and continue painting on back image if necessary. </p> http://stackoverflow.com/questions/1045503/java-jcombobox-custom-renderer-and-gtk/1052360#1052360 0 Answer by Rastislav Komara for Java JComboBox Custom Renderer and GTK Rastislav Komara 2009-06-27T08:07:46Z 2009-06-27T08:07:46Z <p>The <code>DefaultListCellRenderer</code> extends JLabel and looks like JLabel. If you have non-editable ComboBox then Renderer returned via getRenderer is used for painting drop down list area and also for "input" area. Try to play with border/foreground/background settings for ComboBox and renderer.</p> http://stackoverflow.com/questions/1037212/how-to-drag-from-browser-area-and-deposit-to-the-explorer-area/1037438#1037438 1 Answer by Rastislav Komara for How to drag from browser area and deposit to the explorer area? Rastislav Komara 2009-06-24T09:59:23Z 2009-06-24T09:59:23Z <p>According to your justification is is not simple, but it can be managed. There is class called DataFlavor. You had to use D&amp;D mechanism introduce in java using Transferable objects and provide correct mime-types and corresponding conversion. The problem is which mime-type will be accepted by explorer. I hope this help. </p> http://stackoverflow.com/questions/1031795/swing-what-is-a-good-way-to-implement-fully-scalable-components/1032147#1032147 0 Answer by Rastislav Komara for Swing: What is a good way to implement fully-scalable components? Rastislav Komara 2009-06-23T12:05:46Z 2009-06-23T12:05:46Z <p>If I look at this problem as visual UML editor then I had to think about single "canvas" component drawing each element as graphical object with base aspect ration and zooming in/out. I can't see reason for list of components aligned within parent container.</p> http://stackoverflow.com/questions/1000219/java-heap-space-cms-with-huge-files/1000828#1000828 1 Answer by Rastislav Komara for Java Heap Space (CMS with huge files) Rastislav Komara 2009-06-16T11:13:52Z 2009-06-16T11:13:52Z <p>Are you required to serve files using Tomcat? For this kind of tasks we have used separate download mechanism. We chained Apache -> Tomcat -> storage and then add rewrite rules for download. Then you just by-pass Tomcat and Apache will serve the file to client (Apache->storage). But if works only if you have files stored as files. If you read from DB or other type of non-file storage this solution cannot be used successfully. the overall scenario is that you generate download links for files as e.g. domain/binaries/xyz... and write redirect rule for domain/files using Apache mod_rewrite.</p> http://stackoverflow.com/questions/999932/how-to-do-smooth-scrolling-for-lists-in-swing/1000545#1000545 1 Answer by Rastislav Komara for How to do smooth scrolling for lists in Swing Rastislav Komara 2009-06-16T09:58:37Z 2009-06-16T09:58:37Z <p>If you are using <code>JList</code> try overwrite <code>getScrollableUnitIncrement(Rectangle, int, int) </code> and <code>getScrollableBlockIncrement(Rectangle, int, int) </code> to return custom increment .. e.g. 2 pixels instead of default values computed from list entry height.</p> http://stackoverflow.com/questions/968619/java-swing-design-pattern-for-complex-class-interaction/970431#970431 0 Answer by Rastislav Komara for Java Swing design pattern for complex class interaction Rastislav Komara 2009-06-09T14:37:23Z 2009-06-09T14:37:23Z <p>Well, I will change the world you are working with. You have 3 classes and each of them is just observer of the chat-world. The <a href="http://en.wikipedia.org/wiki/Model%E2%80%93view%E2%80%93controller" rel="nofollow">MVC</a> is the way how to deal with your problem. You had to create Model for your world, in this case chat program. This model will store data, chat queue, friend list and keep eye on consistency and notify everybody interested about changes. Also, there will be several observers which are interested in state of world and are reflecting its state to user and server. The GUI is bringing visualization to friends-list and message queue and reacts on their changes. The Scheduler is looking about changes in scheduled tasks and update model with their results. The ChatManager will be better doing its job in several classes like SessionManager, MessageDispatcher, MessageAcceptor etc. You have 3 classes with empty center. Create center and connect them together using this center and <a href="http://en.wikipedia.org/wiki/Observer%5Fpattern" rel="nofollow">Observer Pattern</a>. Then each class will deal only with one class and only with interesting events. One GUI class is bad idea. Divide to more subclasses representing logical group (view of model). This is the way how to conquer your UI.</p> http://stackoverflow.com/questions/915810/is-xml-or-xul-the-future-of-java-gui-building/916178#916178 0 Answer by Rastislav Komara for Is XML or XUL the future of Java GUI building? Rastislav Komara 2009-05-27T14:49:53Z 2009-05-27T14:49:53Z <p>I do all my swing stuff by hand and none of my application is nasty. If you do not know how to create usable and good looking UI there is no technology to help you.</p> http://stackoverflow.com/questions/902031/how-to-implement-multilanguage-in-java-swing-applications/903554#903554 1 Answer by Rastislav Komara for How to implement multilanguage in Java/Swing applications? Rastislav Komara 2009-05-24T11:13:19Z 2009-05-24T11:13:19Z <p>Well, you had to use <code>ResourceBundle</code>s. But if you are setting the componet text property use instead of human readable text the text for <code>RB.getString()</code>. Then if the Matisse regenerates form the bundle key will stay and localization will work. Example:</p> <p>I will use this image from Matisse pages:<br /> <img src="http://www.myeclipseide.com/documentation/quickstarts/m4m%5Foverview/images/properties%5Fview1.gif" alt="Illustration" />.</p> <p>there you can see the the property <strong>text</strong>. There is value "My New Label". Instead of this you can use <code>rb.getString("myNewLabel.my.message")</code> where <code>rb</code> is <code>ResourceBundle</code>. The only problem should be too intelligent properties editor going against you. I never work with any wysiwyg editor (personal preference, I do always UI design by hand).</p> http://stackoverflow.com/questions/875897/hibernate-swing/886936#886936 0 Answer by Rastislav Komara for Hibernate + Swing Rastislav Komara 2009-05-20T09:00:56Z 2009-05-20T09:00:56Z <p>I prefer session per model update. It helps avoid long-lasting sessions and also it helps minimize total number of session creations.</p> http://stackoverflow.com/questions/699996/java-web-application-how-to-implement-caching-techniques/700318#700318 1 Answer by Rastislav Komara for Java Web Application: How to implement caching techniques? Rastislav Komara 2009-03-31T06:46:03Z 2009-03-31T08:36:13Z <p>Your question contains several separate questions together. Let's start slowly. ServletContext is good place where you can store handle to your cache. But you pay by having cache per server instance. It should be no problem. If you want to register cache in wider range consider registering it into JNDI.</p> <p>The problem with caching. Basically, you are retrieving xml via webservice. If you are accesing this webservice via HTTP you can install simple HTTP proxy server on your side which handle caching of xml. The next step will be caching of resolved xml in some sort of local object cache. This cache can exists per server without any problem. In this second case the EHCache will do perfect job. In this case the chain of processing will be like this <code>Client - http request -&gt; servlet -&gt; look into local cache - if not cached -&gt; look into http proxy (xml files) -&gt; do proxy job (http to webservice)</code>. </p> <p>Pros:</p> <ul> <li>Local cache per server instance, which contains only objects from requested xmls</li> <li>One http proxy running on same hardware as our webapp.</li> <li>Possibility to scale webapp without adding new http proxies for xml files.</li> </ul> <p>Cons:</p> <ul> <li>Next level of infrastructure</li> <li>+1 point of failure (http proxy)</li> <li>More complicated deployment</li> </ul> <p>Update: don't forget to always send HTTP HEAD request into proxy to ensure that cache is up to date.</p> http://stackoverflow.com/questions/627579/running-a-javafx-program-within-a-web-page-not-launching-a-new-window/629381#629381 0 Answer by Rastislav Komara for Running a JavaFX program within a web page, not launching a new window Rastislav Komara 2009-03-10T09:08:14Z 2009-03-10T09:08:14Z <p>Yep, just use run application as Java Applet. NetBeans will deploy all FX stuff correctly for all platforms including Java Applet.</p> http://stackoverflow.com/questions/515819/override-default-behavior-of-tab-in-jtextpane/527373#527373 1 Answer by Rastislav Komara for Override default behavior of TAB in JTextPane Rastislav Komara 2009-02-09T07:52:16Z 2009-02-09T07:52:16Z <p>The other way is to redefine action for JTextArea component associated with TAB key. Take look at ActionMap.</p> http://stackoverflow.com/questions/518471/jslider-question-position-after-leftclick/527372#527372 0 Answer by Rastislav Komara for JSlider question: Position after leftclick Rastislav Komara 2009-02-09T07:49:25Z 2009-02-09T07:49:25Z <p>This behavior is derived from OS. Are you sure you want to redefine it and confuse users? I don't think so. ;)</p> http://stackoverflow.com/questions/499433/build-javafx-project-without-netbeans/502460#502460 3 Answer by Rastislav Komara for Build JavaFX project without NetBeans Rastislav Komara 2009-02-02T07:39:33Z 2009-02-02T07:39:33Z <p>If you create new project in NB there is folder called nbproject. This folder contains <code>build-impl.xml</code>. This file contains this target:</p> <pre><code>&lt;target if="src.dir" name="-compile-fx"&gt; &lt;taskdef classname="com.sun.tools.javafx.ant.JavaFxAntTask" classpath="${platform.bootcp}" name="javafxc"/&gt; &lt;javafxc bootclasspath="${platform.bootcp}" classpath="${build.classes.dir}:${javac.classpath}" compilerclasspath="${platform.bootcp}" debug="${javac.debug}" deprecation="${javac.deprecation}" destdir="${build.classes.dir}" excludes="${excludes}" fork="yes" includeJavaRuntime="false" includeantruntime="false" includes="**/*.fx" source="${javac.source}" sourcepath="" srcdir="${src.dir}" target="${javac.target}"&gt; &lt;compilerarg line="${javac.compilerargs}"/&gt; &lt;/javafxc&gt; &lt;/target&gt; </code></pre> <p>This is good start to create ant for Eclipse. I'm not sure how building works for Eclipse, but there could be limitations. The <code>com.sun.tools.javafx.ant.JavaFxAntTask</code> is located in SDK, not in compiler jar. Good luck!.</p> http://stackoverflow.com/questions/416004/can-i-place-lot-of-cpu-and-io-intensive-code-in-shutdown-hook/416062#416062 2 Answer by Rastislav Komara for Can I place lot of CPU and IO intensive code in ShutDown Hook Rastislav Komara 2009-01-06T10:41:58Z 2009-01-06T10:41:58Z <p>Simply No. <a href="http://java.sun.com/j2se/1.4.2/docs/api/java/lang/Runtime.html#addShutdownHook(java.lang.Thread)" rel="nofollow">Read carefully API</a> and you will see. There is limited time to shutdown. If you extend over this time slot the JVM will simply end/terminate without notification. If you are writing data, you will write down corrupted data. </p> http://stackoverflow.com/questions/393948/object-persistence-strategy-for-desktop-application/394134#394134 2 Answer by Rastislav Komara for Object persistence strategy for desktop application Rastislav Komara 2008-12-26T19:05:13Z 2008-12-26T19:05:13Z <p>Your question has two parts. 1st: How to persist data? 2nd: How to protect them?</p> <p>There is a lot of ways how to persist data. From simple XML, java serialization to own data format. There is no way how to prevent revers engineering data just by "plain text". You can just make it harder, but not impossible. To make it quite impossible you need to use strong encryption and here comes a problem. How to encrypt data and don't reveal secure token. If you are distributing secure token with your application it is just a matter of time to find it and problem is solved. So entering a secure token during installation is not an option. If user has to authenticate to use application it should help, but it is the same problem. The next option is to use custom protected bijection algorithm to obfuscate data. And the last option is to do nothing just keep the data format private and don't publish them and obfuscate your application to prevent from reverse engineering. </p> <p>At the best value comes simple obfuscation of data (XOR primenumber) with custom data format and obfuscated application.</p> http://stackoverflow.com/questions/1590923/java-6-and-swingutilities2/1599624#1599624 Comment by Rastislav Komara on Java 6 and SwingUtilities2 Rastislav Komara 2009-10-21T20:01:03Z 2009-10-21T20:01:03Z If not, take another path from my suggestions. http://stackoverflow.com/questions/1565712/java-mac-os-x-running-with-out-a-dock-icon Comment by Rastislav Komara on Java Mac OS X running with out a Dock Icon Rastislav Komara 2009-10-15T10:03:14Z 2009-10-15T10:03:14Z :-))))))))))))))))) http://stackoverflow.com/questions/1517210/how-to-get-the-added-removed-or-changed-chars-from-documentlistener/1517242#1517242 Comment by Rastislav Komara on How to get the added, removed or changed chars from DocumentListener? Rastislav Komara 2009-10-05T09:24:14Z 2009-10-05T09:24:14Z DF.replace() with empty string is called if I remember correctly http://stackoverflow.com/questions/1489585/make-header-text-bold-when-its-column-is-selected-in-jtable/1508237#1508237 Comment by Rastislav Komara on Make header text bold when its column is selected in JTable Rastislav Komara 2009-10-03T08:41:41Z 2009-10-03T08:41:41Z Table header uses sun.swing.table.DefaultTableCellHeaderRenderer to render each column in header row. Unfortunately sun.** is private SUN package. You will need to make more painting as usual to meet LaF. http://stackoverflow.com/questions/1489585/make-header-text-bold-when-its-column-is-selected-in-jtable/1490090#1490090 Comment by Rastislav Komara on Make header text bold when its column is selected in JTable Rastislav Komara 2009-10-02T07:58:15Z 2009-10-02T07:58:15Z This isn't correct solution. You are mixing Model and UI together. http://stackoverflow.com/questions/1425618/when-i-execute-get-ldapconnection-thorugh-swing-it-hangs/1425901#1425901 Comment by Rastislav Komara on when i execute get LDAPConnection thorugh Swing it hangs!!! Rastislav Komara 2009-09-15T09:26:35Z 2009-09-15T09:26:35Z Rajes, where is the other thread spawned? If I understand correctly, this is Matis generated code. And the jButton1MouseClicked are called from AWT. http://stackoverflow.com/questions/1336628/how-to-mix-java-swing-and-java-fx-in-swing-application/1341177#1341177 Comment by Rastislav Komara on How to mix java swing and java fx in swing application? Rastislav Komara 2009-08-28T11:11:04Z 2009-08-28T11:11:04Z I think so. For now the best way how to do this is just wait. http://stackoverflow.com/questions/1336628/how-to-mix-java-swing-and-java-fx-in-swing-application/1336657#1336657 Comment by Rastislav Komara on How to mix java swing and java fx in swing application? Rastislav Komara 2009-08-27T06:51:18Z 2009-08-27T06:51:18Z FYI: It is completely unsupported, uses private APIs, and almost certainly will break in the next version. http://stackoverflow.com/questions/1282865/java-swing-jlist-with-listcellrenderer-selected-item-different-height/1283661#1283661 Comment by Rastislav Komara on Java Swing: JList with ListCellRenderer selected item different height Rastislav Komara 2009-08-16T07:59:45Z 2009-08-16T07:59:45Z This won't help.. http://stackoverflow.com/questions/1200242/javafx-awt-bridges-hello-world Comment by Rastislav Komara on [JavaFX] AWT bridge's "Hello World" Rastislav Komara 2009-07-30T09:35:00Z 2009-07-30T09:35:00Z You heard it from me. And of course it is fuzzy and not guaranteed to fork for a lifetime. Maybe you should try different approach. http://stackoverflow.com/questions/1120088/what-is-javas-xxusemembar-parameter Comment by Rastislav Komara on What is Java's -XX:+UseMembar parameter Rastislav Komara 2009-07-14T10:29:34Z 2009-07-14T10:29:34Z BTW:-XX options are not officially supported and can be removed from future releases without notification. http://stackoverflow.com/questions/1072511/where-to-look-to-get-started-with-making-an-animated-clock-with-swing-in-java Comment by Rastislav Komara on Where to look to get started with making an animated clock with Swing in Java? Rastislav Komara 2009-07-02T09:36:43Z 2009-07-02T09:36:43Z Did you consider using JavaFX? www.javafx.com http://stackoverflow.com/questions/1031795/swing-what-is-a-good-way-to-implement-fully-scalable-components/1032147#1032147 Comment by Rastislav Komara on Swing: What is a good way to implement fully-scalable components? Rastislav Komara 2009-06-24T09:38:46Z 2009-06-24T09:38:46Z We do not understand each other. I was just pointing to your justification for visual UML editor. http://stackoverflow.com/questions/1011580/jcombobox-getselecteditem-not-changing Comment by Rastislav Komara on JComboBox getSelectedItem() not changing Rastislav Komara 2009-06-18T11:35:48Z 2009-06-18T11:35:48Z Please, can you specify the way you are selecting JCB value? How your model looks like? http://stackoverflow.com/questions/976940/which-java-blocking-queue-is-most-efficient-for-single-producer-single-consumer-s Comment by Rastislav Komara on Which Java blocking queue is most efficient for single-producer single-consumer scenarios Rastislav Komara 2009-06-12T12:34:32Z 2009-06-12T12:34:32Z Did you considered buying Real-Time JVM? It has special extensions helping to achieve such critical time frames. <a href="http://java.sun.com/javase/technologies/realtime/index.jsp" rel="nofollow">java.sun.com/javase/technologies/&hellip;</a>