Avalon Look and feel in Java 1.6

Is there a new Avalon look and feel in java 1.6? The specs say so but I am not able to get much information about it. If Yes, do you need to be on Vista to experience the look and feel?Is it part of the Windows look and feel? Any Demo Apps?
[261 byte] By [spadiyara] at [2007-11-27 1:42:00]
# 1
Hello, the formerly called "Avalon" look and feel is now called "WPF". Anyway, this look and feel is going to be included in Java 1.6 and, as I gather ( http://weblogs.java.net/blog/javaben/archive/2005/09/avalon_everywhe.html), it will be cross-platform! Hope this helps, laginimaineb.
laginimaineba at 2007-7-12 0:58:02 > top of Java-index,Java Essentials,Java Programming...
# 2

Try the UIManager.getAuxiliaryLookAndFeels()

public static LookAndFeel[] getAuxiliaryLookAndFeels()

See what you've got.

Sorry, it's really getInstalledLookAndFeels() you probably want ...

import javax.swing.UIManager;

public class GetLookAndFeels {

public static void main(String[] argv) {

UIManager.LookAndFeelInfo[] lafis = UIManager.getInstalledLookAndFeels();

if (lafis != null) {

for (int i = 0; i < lafis.length; i++)

System.out.println( lafis[i] != null ? ""+lafis[i] : "NuLL");

}

}

}

Message was edited by:

abillconsl

abillconsla at 2007-7-12 0:58:02 > top of Java-index,Java Essentials,Java Programming...
# 3

I am waiting for Java 7 where the Sanjaya LAF will be introduced.

It will have really big, spiky JButtons but they will only generate events part of the time. After some random period, they will complete fail to work.

[url #" style="display: block; background-image: url( 'http://media.philly.com/images/300*337/177254a4-f790-40fc-b667-9252734a4922.jpg'); width: 300px; height: 337px] [/url]

filestreama at 2007-7-12 0:58:02 > top of Java-index,Java Essentials,Java Programming...
# 4
You sir, are a very silly man ]:OP
abillconsla at 2007-7-12 0:58:02 > top of Java-index,Java Essentials,Java Programming...