<?xml version="1.0" encoding="utf-8"?>

<rdf:RDF
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
xmlns:admin="http://webns.net/mvcb/"
xmlns:cc="http://web.resource.org/cc/"
xmlns="http://purl.org/rss/1.0/">

<channel rdf:about="http://weblogs.java.net/blog/malenkov/">
<title>Sergey Malenkov&apos;s Blog</title>
<link>http://weblogs.java.net/blog/malenkov/</link>
<description></description>
<dc:language>en-us</dc:language>
<dc:creator></dc:creator>
<dc:date>2008-07-25T06:08:52-08:00</dc:date>
<admin:generatorAgent rdf:resource="http://www.movabletype.org/?v=3.01D" />


<items>
<rdf:Seq><rdf:li rdf:resource="http://weblogs.java.net/blog/malenkov/archive/2008/07/how_to_load_cla.html" />
<rdf:li rdf:resource="http://weblogs.java.net/blog/malenkov/archive/2007/12/it_is_time_to_c_1.html" />
<rdf:li rdf:resource="http://weblogs.java.net/blog/malenkov/archive/2007/11/how_to_veto_a_p_1.html" />
<rdf:li rdf:resource="http://weblogs.java.net/blog/malenkov/archive/2007/10/javabeans_featu.html" />
<rdf:li rdf:resource="http://weblogs.java.net/blog/malenkov/archive/2007/03/how_to_use_the_1.html" />
<rdf:li rdf:resource="http://weblogs.java.net/blog/malenkov/archive/2006/10/xmldecoder_impr.html" />
<rdf:li rdf:resource="http://weblogs.java.net/blog/malenkov/archive/2006/08/how_to_encode_t.html" />
<rdf:li rdf:resource="http://weblogs.java.net/blog/malenkov/archive/2006/08/how_to_encode_e.html" />
</rdf:Seq>
</items>

</channel>

<item rdf:about="http://weblogs.java.net/blog/malenkov/archive/2008/07/how_to_load_cla.html">
<title>How to load classes from JAR or ZIP?</title>
<link>http://weblogs.java.net/blog/malenkov/archive/2008/07/how_to_load_cla.html</link>
<description><![CDATA[I needed to load the classes from the <code>dt.jar</code> archive on the fly. The path to the archive was generated automatically based on the "java.home" system property. The original idea was to use the <code>URLClassLoader</code>, but it could not find classes. I had to write a custom class loader which read an archive and loaded classes on demand. At that instant I realized why the <code>URLClassLoader</code> did not work: I had incorrectly generated the path to the archive and the <code>URLClassLoader</code> for a wonder provided no warning that the archive was not found.]]></description>
<dc:subject>J2SE</dc:subject>
<dc:creator>malenkov</dc:creator>
<dc:date>2008-07-25T06:08:52-08:00</dc:date>
</item>
<item rdf:about="http://weblogs.java.net/blog/malenkov/archive/2007/12/it_is_time_to_c_1.html">
<title>It is time to choose Color</title>
<link>http://weblogs.java.net/blog/malenkov/archive/2007/12/it_is_time_to_c_1.html</link>
<description>I would like to discuss some proposed changes in the JColorChooser component.</description>
<dc:subject>J2SE</dc:subject>
<dc:creator>malenkov</dc:creator>
<dc:date>2007-12-19T10:09:01-08:00</dc:date>
</item>
<item rdf:about="http://weblogs.java.net/blog/malenkov/archive/2007/11/how_to_veto_a_p_1.html">
<title>How to veto a property change?</title>
<link>http://weblogs.java.net/blog/malenkov/archive/2007/11/how_to_veto_a_p_1.html</link>
<description>Correct usage of constrained properties seems still remain unclear for many users.</description>
<dc:subject>J2SE</dc:subject>
<dc:creator>malenkov</dc:creator>
<dc:date>2007-11-22T03:01:24-08:00</dc:date>
</item>
<item rdf:about="http://weblogs.java.net/blog/malenkov/archive/2007/10/javabeans_featu.html">
<title>JavaBeans: feature attributes</title>
<link>http://weblogs.java.net/blog/malenkov/archive/2007/10/javabeans_featu.html</link>
<description><![CDATA[Let's talk about the <code>FeatureDescriptor</code> class, the superclass for all other descriptors. It enables to add extra metadata to describe the beans. The builder tool could use such metadata to provide enhanced functionality.]]></description>
<dc:subject>J2SE</dc:subject>
<dc:creator>malenkov</dc:creator>
<dc:date>2007-10-04T07:29:03-08:00</dc:date>
</item>
<item rdf:about="http://weblogs.java.net/blog/malenkov/archive/2007/03/how_to_use_the_1.html">
<title>How to use the @ConstructorProperties annotation</title>
<link>http://weblogs.java.net/blog/malenkov/archive/2007/03/how_to_use_the_1.html</link>
<description>The @ConstructorProperties annotation for constructors was introduced in JDK version 6. This annotation shows how the parameters of annotated constructor correspond to object&apos;s properties.</description>
<dc:subject>J2SE</dc:subject>
<dc:creator>malenkov</dc:creator>
<dc:date>2007-03-20T18:00:00-08:00</dc:date>
</item>
<item rdf:about="http://weblogs.java.net/blog/malenkov/archive/2006/10/xmldecoder_impr.html">
<title>XMLDecoder improvements</title>
<link>http://weblogs.java.net/blog/malenkov/archive/2006/10/xmldecoder_impr.html</link>
<description>I would like to start a discussion about XMLDecoder improvements. Some requests can be found in RFE 4864117. I don&apos;t want to discuss improvements of persistence delegation (XMLEncoder) here.</description>
<dc:subject>J2SE</dc:subject>
<dc:creator>malenkov</dc:creator>
<dc:date>2006-10-31T09:58:53-08:00</dc:date>
</item>
<item rdf:about="http://weblogs.java.net/blog/malenkov/archive/2006/08/how_to_encode_t.html">
<title>How to encode Type-Safe Enums?</title>
<link>http://weblogs.java.net/blog/malenkov/archive/2006/08/how_to_encode_t.html</link>
<description>This is a sequel of my first article about Enums encoding. As you may know, Type-Safe Enums were proposed by Joshua Bloch in Effective Java, but they are not supported by XMLEncoder. This article describes how to encode them into XML properly.</description>
<dc:subject>J2SE</dc:subject>
<dc:creator>malenkov</dc:creator>
<dc:date>2006-08-09T22:00:00-08:00</dc:date>
</item>
<item rdf:about="http://weblogs.java.net/blog/malenkov/archive/2006/08/how_to_encode_e.html">
<title>How to encode Enums?</title>
<link>http://weblogs.java.net/blog/malenkov/archive/2006/08/how_to_encode_e.html</link>
<description>As you may know, Enums were introduced in Tiger, but they are not supported by XMLEncoder. This article describes how to encode them into XML properly.</description>
<dc:subject>J2SE</dc:subject>
<dc:creator>malenkov</dc:creator>
<dc:date>2006-08-07T18:00:00-08:00</dc:date>
</item>


</rdf:RDF>
