The Source for Java Technology Collaboration
User: Password:
Register | Login help    

Search

Online Books:
java.net on MarkMail:


Alexander Potochkin

Alexander Potochkin is an engineer on the Swing team. He enjoys solving puzzles, traveling to different countries and always returning to Saint Petersburg, Russia.
 

Weblogs

Hello Swing community

While the SAF project is on hold, the Swing team welcomes the active development of the alternative implementations of the Swing framework.

Hello Swing community

After much discussion it's become clear that the Swing Application Framework API as it is today hasn't reached...

Java desktop team is working hard to move JDK7 forward.

I am happy to announce that Nimbus...

As I promised in the previous entry, the work on the Swing Application Framework has been restarted.

I know this is not good to disappear for a long time from blogging and SAF mail aliases, I am sorry about that. This happened because Swing team had some urgent temporary tasks to work on.

As you probably know, a few weeks ago I became the new specification lead for the Swing Application Framework project (JSR-296). This project has been...
One of the biggest advantage of JXLayer 3.0 over the previous version is the ability to catch input events of its subcomponents. I started to think about this feature when I was asked if it was...
The JXLayer's functionality consists of two parts: painting issues and input event processing.
In this entry I'll describe painting in details, the...

LockableUI is definitely one of the most challenging feature in the JXLayer library.

The mouse auto-scrolling is very popular these days for modern applications. I usually use this feature in the Firefox browser - you click the mouse wheel somewhere on the page and can immediately...

It is my pleasure to announce a major update of JXLayer component. The new version is hosted on its own java.net project jxlayer.dev.java.net, where I...

When I worked on the lightweight disabling of compound Swing components for my JXLayer project, I tried different approaches to workaround the problems with the custom painting of double-buffered...

JDK 6 introduced plenty of cool desktop features, like famous gray-rect fix or...

Few weeks ago I submitted a session for the next JavaOne and it reminded me the previous session which we presented with...

As everybody knows if you need to repaint a Swing component you should call Component.repaint() method,...

In one of my previous blogs I answered to Kirill's comment that some of techniques he described in his...

One of the big part of my work is fixing bugs in Swing but not all of them are to be fixed, some of them are closed because they describe the situations when someone uses Swing in undocumented...

A few weeks ago Chris tagged 4 people at once !

In one of my previous blog I presented a component which enables arrow keys to transfer focus and...

Inspired by some latest blogs I decided to find the most hacky and crazy method to paint on a component
I chose JButton as the most well-known component to play with

I have seen a lot of custom GlassPane tricks, which use GlassPane to "disable" the frame, to provide a visual effects during the lengthy tasks or to give more rich feedback during drag and drop...

I have fixed quite a lot of bugs and RFE's in Swing for Java 1.6 and don't really remember all of them,
but I do remember one remarkable bug because it took me unusually long time to find a...

A long time ago I wanted to have a component which could paint rotated text for my application

I definitely could create my own component, override paintComponent(), implement correct resizing...

Hello everybody !

After spending a fantastic after JavaOne vacation, travalling Arizona and Florida I am happy to say hello to the comminity again.
Thanks to everyone who visited JavaOne...

Everybody knows that Swing and AWT behaviour can be changed with command line properties,

It's taken some time to study all possible ways of detecting Event Dispatch Thread rule violations,
and now I feel I this topic is about to be closed.

But let me tell from the...

Well, I've got more than 30 comments for the previous blog.

It's high time to summarize them and make up a conclusion.

There are two separate enhancements were suggested in...

Every experienced Swing developer knows that Swing components must be accessed from Event Dispatch Thread (EDT) only. Working with JComponents from any other thread may lead to unpredictable...

It's been a lot of publications about adding "close" button to a tabbedPane, all solutions suggested are really inventive and not easy to find.

Recently I came across one interesting bug 4413412
which seems to discover very odd Swing behaviors and really...