Rastislav Komara

648
Reputation
95 views

Registered User

Name Rastislav Komara
Member for 1 year
Seen 2 days ago
Website
Location Prague, CR, EU
Age 29
Software Engineer @ SUN Microsystems
Oct
23
accepted Make header text bold when its column is selected in JTable
Oct
21
comment Java 6 and SwingUtilities2
If not, take another path from my suggestions.
Oct
21
answered Java 6 and SwingUtilities2
Oct
15
comment Java Mac OS X running with out a Dock Icon
:-)))))))))))))))))
Oct
5
comment How to get the added, removed or changed chars from DocumentListener?
DF.replace() with empty string is called if I remember correctly
Oct
3
comment Make header text bold when its column is selected in JTable
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.
Oct
2
answered Make header text bold when its column is selected in JTable
Oct
2
comment Make header text bold when its column is selected in JTable
This isn't correct solution. You are mixing Model and UI together.
Sep
26
awarded  Yearling
Sep
18
accepted JavaFX url-proxy?
Sep
15
comment when i execute get LDAPConnection thorugh Swing it hangs!!!
Rajes, where is the other thread spawned? If I understand correctly, this is Matis generated code. And the jButton1MouseClicked are called from AWT.
Sep
14
answered JavaFX url-proxy?
Sep
3
answered JavaFX or RIA desktop app (on dvd) also available on the web?
Aug
29
answered Convert JPanel to image
Aug
28
answered javafx scrollbar
Aug
28
comment How to mix java swing and java fx in swing application?
I think so. For now the best way how to do this is just wait.
Aug
27
comment How to mix java swing and java fx in swing application?
FYI: It is completely unsupported, uses private APIs, and almost certainly will break in the next version.
Aug
23
answered JavaFX or Swing?
Aug
16
answered How to find out the instance when component resize is complete
Aug
16
answered Detecting drops from the same process
Aug
16
answered Java Swing: JList with ListCellRenderer selected item different height
Aug
16
comment Java Swing: JList with ListCellRenderer selected item different height
This won't help..
Aug
12
answered Tristate Checkboxes in Java
Jul
30
comment [JavaFX] AWT bridge’s “Hello World”
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.
Jul
29
answered [JavaFx//Eclipse RCP] Good idea / Bad idea (/other ideas ?)
Jul
14
comment What is Java’s -XX:+UseMembar parameter
BTW:-XX options are not officially supported and can be removed from future releases without notification.
Jul
2
awarded  Organizer
Jul
2
revised Extensible GUI framework for Java
edited tags
Jul
2
answered How to implement List, Set, and Map in null free design?
Jul
2
comment Where to look to get started with making an animated clock with Swing in Java?
Did you consider using JavaFX? www.javafx.com
Jun
30
answered PaintComponent Takes a Long Time, Ties up the Swing Event Dispatch Thread
Jun
27
answered Java JComboBox Custom Renderer and GTK
Jun
24
accepted How to drag from browser area and deposit to the explorer area?
Jun
24
answered How to drag from browser area and deposit to the explorer area?
Jun
24
comment Swing: What is a good way to implement fully-scalable components?
We do not understand each other. I was just pointing to your justification for visual UML editor.
Jun
23
answered Swing: What is a good way to implement fully-scalable components?
Jun
18
comment JComboBox getSelectedItem() not changing
Please, can you specify the way you are selecting JCB value? How your model looks like?
Jun
16
answered Java Heap Space (CMS with huge files)
Jun
16
answered How to do smooth scrolling for lists in Swing
Jun
12
awarded  Commentator
Jun
12
comment Which Java blocking queue is most efficient for single-producer single-consumer scenarios
Did you considered buying Real-Time JVM? It has special extensions helping to achieve such critical time frames. java.sun.com/javase/technologies/…
Jun
11
comment Java Swing design pattern for complex class interaction
Well, I see you did not understand my answer. The real power is making model which hold state of the world. And then observers for this model only and controllers which modify model state. You lower your interaction between classes to Controller/Observer -> Model. There is no need to create interactions between C1/O1 <-> C2/O2.
Jun
9
answered Java Swing design pattern for complex class interaction