The Torah doesn’t include that most crucial of tomes, the Book of Moz.
Moz 13:37
And He spoke unto the netizens, “He that browseth the Net without the Fox of Flame shall suffer unending frustration. Blessed be the keepers of the Gecko trunk!” And lo we there did view source and beheld the true meaning of the Mark of the Beast Web!

Leave it to those crafty and chaotic creators of TV’s best animated crapfest (or maybe the wizards behind their new site) to be brutally honest about which browser they would have us use.
It’s even easier than it looks.
<bean id="myList" class="java.util.ArrayList">
<constructor-arg>
<list>
<value type="org.pkg.ExampleEnum">EXAMPLE_ONE</value>
<value type="org.pkg.ExampleEnum">EXAMPLE_TWO</value>
</list>
</constructor-arg>
</bean>
Too much work for you? Well, if you inject a collection into a Java Bean that defines that property with generics, the type definition isn’t even necessary! Spring determines that type from the generic.
Also, if you’re interesting in injecting a map using enums as keys, you may with to utilize the java.util.EnumMap data structure. Inject a HashMap instead of a ArrayList and build an EnumMap in the setter of the bean.
<bean id="javaBean" class="org.pkg.MyBean">
<property name="exampleMap">
<map>
<entry key="EXAMPLE_ONE" value="myValueForExampleOne" />
<entry key="EXAMPLE_TWO" value="myValueForExampleTwo" />
</map>
</property>
</bean>
…
//javaBean...
private Map<ExampleEnum, String> = null;
//public setter creates efficient EnumMap
public void setExampleMap(Map<ExampleEnum, String> simple) {
this.enumMap = new EnumMap<ExampleEnum, String>(simple);
}
Adobe, owners of the FLV and SWF formats after their purchase of the original developer Macromedia, have decided to open the formats as part of the Open Screen Project. While this is already fantastic news for the free software movement in general, I am hopeful that this may open the door for a native Linux SWF development environment. The ability to design flash in Linux, possibly integrated with other open-source dynamic presentation frameworks like xinf and haXe would be a huge win for the user community. Just one more reason not to run Windows.
And Happy Birthday Chloey. <3