<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Andi Sunyoto Personal Blog &#187; exclusive</title>
	<atom:link href="http://www.andisun.com/tag/exclusive/feed" rel="self" type="application/rss+xml" />
	<link>http://www.andisun.com</link>
	<description>andi&#124;blog</description>
	<lastBuildDate>Wed, 28 Dec 2011 12:24:37 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Memanfaatkan Class List</title>
		<link>http://www.andisun.com/tutorials/j2me-programming/memanfaatkan-class-list</link>
		<comments>http://www.andisun.com/tutorials/j2me-programming/memanfaatkan-class-list#comments</comments>
		<pubDate>Thu, 23 Jul 2009 15:30:42 +0000</pubDate>
		<dc:creator>myandisun</dc:creator>
				<category><![CDATA[J2ME-Mobile Programming]]></category>
		<category><![CDATA[class]]></category>
		<category><![CDATA[exclusive]]></category>
		<category><![CDATA[image]]></category>
		<category><![CDATA[implicit]]></category>
		<category><![CDATA[J2ME]]></category>
		<category><![CDATA[list]]></category>
		<category><![CDATA[multiple]]></category>

		<guid isPermaLink="false">http://www.andisun.com/?p=265</guid>
		<description><![CDATA[Class List merupakan turunan dari class Screen. Class ini berfungsi untuk menampilkan daftar item pilihan yang dapat diakses denagn cara menscroll. Untuk memilih item yang diinginkan dengan menekan tombol select atau menggunakan Command. Bentuk constructor List adalah sebagai berikut: List(String title, int listType) List(String title, int listType, String[] choices, Image[] images) Daftar method clas List [...]]]></description>
			<content:encoded><![CDATA[<p>Class <span style="font-family: courier new,courier;">List</span> merupakan turunan dari class <span style="font-family: courier new,courier;">Screen</span>. Class ini berfungsi untuk menampilkan daftar item pilihan yang dapat diakses denagn cara menscroll. Untuk memilih item yang diinginkan dengan menekan tombol select atau menggunakan <span style="font-family: courier new,courier;">Command</span>.</p>
<p>Bentuk constructor List adalah sebagai berikut:</p>
<ul>
<li><span style="font-family: terminal,monaco;">List(String title, int listType)</span></li>
<li><span style="font-family: terminal,monaco;">List(String title, int listType, String[] choices, Image[] images)</span></li>
</ul>
<p>Daftar method clas <span style="font-family: courier new,courier;">List </span>yang digunakan untuk memanipulasi item adalah:</p>
<table style="width: 591px; height: 134px;" border="0" cellspacing="1" cellpadding="1">
<tbody>
<tr>
<td width="127">
<p align="center"><strong>Nama Method</strong></p>
</td>
<td width="454">
<p align="center"><strong>Kegunaan</strong></p>
</td>
</tr>
<tr>
<td width="127"><span style="font-family: courier new,courier;">append()</span></td>
<td width="454"><span style="font-family: arial,helvetica,sans-serif;">Menambah item   dan menempatkannya pada posisi terakhir.</span></td>
</tr>
<tr>
<td width="127"><span style="font-family: courier new,courier;">insert()</span></td>
<td width="454"><span style="font-family: arial,helvetica,sans-serif;">Menambah item   dan menempatkannya di posisi sebelum item yang aktif(item yang sedang   dipilih)</span></td>
</tr>
<tr>
<td width="127"><span style="font-family: courier new,courier;">delete()</span></td>
<td width="454"><span style="font-family: arial,helvetica,sans-serif;">Menghapus item   yang sedang dipilih.</span></td>
</tr>
<tr>
<td width="127"><span style="font-family: courier new,courier;">deleteAll()</span></td>
<td width="454"><span style="font-family: arial,helvetica,sans-serif;">Menghapus   semua item yan gterdapat pada objek List.</span></td>
</tr>
</tbody>
</table>
<p>Parameter choices digunakan untuk melewatkan item-item yang diisikan, sedangkan images digunakan untuk menyimpan daftar gambar (icon) yang akan ditampilkan.</p>
<p>Dalam class List ada tiga macam tipe:</p>
<table style="width: 598px; height: 137px;" border="0" cellspacing="1" cellpadding="1">
<tbody>
<tr>
<td width="102"><strong>Tipe</strong></td>
<td width="479"><strong>Keterangan</strong></td>
</tr>
<tr>
<td width="102"><span style="font-family: courier new,courier;">EXCLUSIVE</span></td>
<td width="479"><span style="font-family: arial,helvetica,sans-serif;">List ini berbentuk radio button. User hanya dapat memilih   satu pilihan.</span></td>
</tr>
<tr>
<td width="102"><span style="font-family: courier new,courier;">MULTIPLE</span></td>
<td width="479"><span style="font-family: arial,helvetica,sans-serif;">List berupa   list yang didalamnya dilengkapi dengan ChecBox. User dapat memilih lebih dari satu pilihan.</span></td>
</tr>
<tr>
<td width="102"><span style="font-family: courier new,courier;">IMPLICITE</span></td>
<td width="479"><span style="font-family: arial,helvetica,sans-serif;">List standar   yang biasa digunakan untuk menampilkan item pilihan.</span></td>
</tr>
</tbody>
</table>
<p>Untuk mengetahui gambar-gambar mana yang dipilih, class List mendefinisikan method-method sebagai berikut:</p>
<pre>public int getSelectedIndex()
public void getSelectedFlags(boolean[] selected)
public boolean isSelected(int elemenNum)</pre>
<p>Sebelum memulai menuliskan program kita siapkan dulu icon yang akan dimunculkan pada List. Format gambar yang digunakan untuk icon adalah PNG. Berikut icon yang yang akan digunakan:</p>
<table style="width: 179px; height: 149px;" border="0" cellspacing="1" cellpadding="1">
<tbody>
<tr>
<td><strong>Nama File</strong></td>
<td><strong>Images</strong></td>
</tr>
<tr>
<td>register.png</td>
<td><img class="aligncenter size-full wp-image-266" title="register" src="http://www.andisun.com/wp-content/uploads/2009/07/register.png" alt="register" width="20" height="22" /></td>
</tr>
<tr>
<td>tools.png</td>
<td><img class="aligncenter size-full wp-image-267" title="tools" src="http://www.andisun.com/wp-content/uploads/2009/07/tools.png" alt="tools" width="20" height="20" /></td>
</tr>
<tr>
<td>wizard.png</td>
<td><img class="aligncenter size-full wp-image-268" title="wizard" src="http://www.andisun.com/wp-content/uploads/2009/07/wizard.png" alt="wizard" width="20" height="20" /></td>
</tr>
<tr>
<td>contact.png</td>
<td><img class="aligncenter size-full wp-image-269" title="contact" src="http://www.andisun.com/wp-content/uploads/2009/07/contact.png" alt="contact" width="20" height="20" /></td>
</tr>
<tr>
<td>help.png</td>
<td><img class="aligncenter size-full wp-image-270" title="help" src="http://www.andisun.com/wp-content/uploads/2009/07/help.png" alt="help" width="20" height="20" /></td>
</tr>
</tbody>
</table>
<p><span id="more-265"></span></p>
<p>Copykan file di atas jadi satu direktori dengan file Java, yaitu direktory: <span style="font-family: courier new,courier;">src</span>. Jika dilihat pada tampilan explorer adalah sebagai berikut:</p>
<table border="0">
<tbody>
<tr>
<td>
<p><div id="attachment_271" class="wp-caption aligncenter" style="width: 476px"><img class="size-full wp-image-271  " title="j2me_list_icon01" src="http://www.andisun.com/wp-content/uploads/2009/07/j2me_list_icon01.png" alt="Tampilan pada file explorer" width="466" height="80" /><p class="wp-caption-text">Tampilan pada file explorer</p></div></td>
</tr>
</tbody>
</table>
<p>Kode program untuk aplikasi ini adalah:</p>

<div class="wp_codebox_msgheader"><span class="right"><sup><a href="http://www.ericbess.com/ericblog/2008/03/03/wp-codebox/#examples" target="_blank" title="WP-CodeBox HowTo?"><span style="color: #99cc00">?</span></a></sup></span><span class="left"><a href="javascript:;" onclick="javascript:showCodeTxt('p265code2'); return false;">View Code</a> JAVA</span><div class="codebox_clear"></div></div><div class="wp_codebox"><table><tr id="p2652"><td class="line_numbers"><pre>1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
</pre></td><td class="code" id="p265code2"><pre class="java" style="font-family:monospace;"><span style="color: #000000; font-weight: bold;">import</span> <span style="color: #006699;">javax.microedition.lcdui.*</span><span style="color: #339933;">;</span>
<span style="color: #000000; font-weight: bold;">import</span> <span style="color: #006699;">javax.microedition.midlet.*</span><span style="color: #339933;">;</span>
&nbsp;
<span style="color: #000000; font-weight: bold;">public</span> <span style="color: #000000; font-weight: bold;">class</span> MIDList <span style="color: #000000; font-weight: bold;">extends</span> MIDlet <span style="color: #000000; font-weight: bold;">implements</span> CommandListener <span style="color: #009900;">&#123;</span>
&nbsp;
    <span style="color: #000000; font-weight: bold;">private</span> Display display<span style="color: #339933;">;</span>
    <span style="color: #000000; font-weight: bold;">private</span> <a href="http://www.google.com/search?hl=en&amp;q=allinurl%3Alist+java.sun.com&amp;btnI=I%27m%20Feeling%20Lucky"><span style="color: #003399;">List</span></a> list<span style="color: #339933;">;</span>
    <span style="color: #000000; font-weight: bold;">private</span> Command cmdPilih<span style="color: #339933;">;</span>
    <span style="color: #000000; font-weight: bold;">private</span> Command cmdBack<span style="color: #339933;">;</span>
    <span style="color: #000000; font-weight: bold;">private</span> <a href="http://www.google.com/search?hl=en&amp;q=allinurl%3Aimage+java.sun.com&amp;btnI=I%27m%20Feeling%20Lucky"><span style="color: #003399;">Image</span></a> img1, img2, img3, img4, img5<span style="color: #339933;">;</span>
&nbsp;
    <span style="color: #000000; font-weight: bold;">public</span> MIDList<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
        display <span style="color: #339933;">=</span> Display.<span style="color: #006633;">getDisplay</span><span style="color: #009900;">&#40;</span><span style="color: #000000; font-weight: bold;">this</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
    <span style="color: #009900;">&#125;</span>
&nbsp;
    <span style="color: #000000; font-weight: bold;">public</span> <span style="color: #000066; font-weight: bold;">void</span> startApp<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
        <span style="color: #666666; font-style: italic;">//membuat objek Command</span>
        cmdPilih <span style="color: #339933;">=</span> <span style="color: #000000; font-weight: bold;">new</span> Command<span style="color: #009900;">&#40;</span><span style="color: #0000ff;">&quot;Pilih&quot;</span>, Command.<span style="color: #006633;">SCREEN</span>, <span style="color: #cc66cc;">2</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
        cmdBack <span style="color: #339933;">=</span> <span style="color: #000000; font-weight: bold;">new</span> Command<span style="color: #009900;">&#40;</span><span style="color: #0000ff;">&quot;Back&quot;</span>, Command.<span style="color: #006633;">BACK</span>, <span style="color: #cc66cc;">1</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
&nbsp;
        <span style="color: #666666; font-style: italic;">//membuat daftar icon</span>
        <span style="color: #000000; font-weight: bold;">try</span> <span style="color: #009900;">&#123;</span>
            img1 <span style="color: #339933;">=</span> <a href="http://www.google.com/search?hl=en&amp;q=allinurl%3Aimage+java.sun.com&amp;btnI=I%27m%20Feeling%20Lucky"><span style="color: #003399;">Image</span></a>.<span style="color: #006633;">createImage</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">&quot;/register.png&quot;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
            img2 <span style="color: #339933;">=</span> <a href="http://www.google.com/search?hl=en&amp;q=allinurl%3Aimage+java.sun.com&amp;btnI=I%27m%20Feeling%20Lucky"><span style="color: #003399;">Image</span></a>.<span style="color: #006633;">createImage</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">&quot;/contact.png&quot;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
            img3 <span style="color: #339933;">=</span> <a href="http://www.google.com/search?hl=en&amp;q=allinurl%3Aimage+java.sun.com&amp;btnI=I%27m%20Feeling%20Lucky"><span style="color: #003399;">Image</span></a>.<span style="color: #006633;">createImage</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">&quot;/tools.png&quot;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
            img4 <span style="color: #339933;">=</span> <a href="http://www.google.com/search?hl=en&amp;q=allinurl%3Aimage+java.sun.com&amp;btnI=I%27m%20Feeling%20Lucky"><span style="color: #003399;">Image</span></a>.<span style="color: #006633;">createImage</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">&quot;/wizard.png&quot;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
            img5 <span style="color: #339933;">=</span> <a href="http://www.google.com/search?hl=en&amp;q=allinurl%3Aimage+java.sun.com&amp;btnI=I%27m%20Feeling%20Lucky"><span style="color: #003399;">Image</span></a>.<span style="color: #006633;">createImage</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">&quot;/help.png&quot;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
        <span style="color: #009900;">&#125;</span> <span style="color: #000000; font-weight: bold;">catch</span> <span style="color: #009900;">&#40;</span><a href="http://www.google.com/search?hl=en&amp;q=allinurl%3Aexception+java.sun.com&amp;btnI=I%27m%20Feeling%20Lucky"><span style="color: #003399;">Exception</span></a> e<span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
            <a href="http://www.google.com/search?hl=en&amp;q=allinurl%3Asystem+java.sun.com&amp;btnI=I%27m%20Feeling%20Lucky"><span style="color: #003399;">System</span></a>.<span style="color: #006633;">out</span>.<span style="color: #006633;">println</span><span style="color: #009900;">&#40;</span>e.<span style="color: #006633;">getMessage</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
        <span style="color: #009900;">&#125;</span>
&nbsp;
        <span style="color: #666666; font-style: italic;">//membuat List bertipe Exclusive</span>
        list <span style="color: #339933;">=</span> <span style="color: #000000; font-weight: bold;">new</span> <a href="http://www.google.com/search?hl=en&amp;q=allinurl%3Alist+java.sun.com&amp;btnI=I%27m%20Feeling%20Lucky"><span style="color: #003399;">List</span></a><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">&quot;List Tipe Exclusive&quot;</span>, <a href="http://www.google.com/search?hl=en&amp;q=allinurl%3Achoice+java.sun.com&amp;btnI=I%27m%20Feeling%20Lucky"><span style="color: #003399;">Choice</span></a>.<span style="color: #006633;">EXCLUSIVE</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
        list.<span style="color: #006633;">append</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">&quot;Register&quot;</span>, img1<span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
        list.<span style="color: #006633;">append</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">&quot;Contact&quot;</span>, img2<span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
        list.<span style="color: #006633;">append</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">&quot;Tool&quot;</span>, img3<span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
        list.<span style="color: #006633;">append</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">&quot;Wizard&quot;</span>, img4<span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
        list.<span style="color: #006633;">append</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">&quot;Help&quot;</span>, img5<span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
        list.<span style="color: #006633;">addCommand</span><span style="color: #009900;">&#40;</span>cmdPilih<span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
        list.<span style="color: #006633;">addCommand</span><span style="color: #009900;">&#40;</span>cmdBack<span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
        list.<span style="color: #006633;">setCommandListener</span><span style="color: #009900;">&#40;</span><span style="color: #000000; font-weight: bold;">this</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
        display.<span style="color: #006633;">setCurrent</span><span style="color: #009900;">&#40;</span>list<span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
    <span style="color: #009900;">&#125;</span>
&nbsp;
    <span style="color: #000000; font-weight: bold;">public</span> <span style="color: #000066; font-weight: bold;">void</span> pauseApp<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
    <span style="color: #009900;">&#125;</span>
&nbsp;
    <span style="color: #000000; font-weight: bold;">public</span> <span style="color: #000066; font-weight: bold;">void</span> destroyApp<span style="color: #009900;">&#40;</span><span style="color: #000066; font-weight: bold;">boolean</span> unconditional<span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
    <span style="color: #009900;">&#125;</span>
&nbsp;
    <span style="color: #000000; font-weight: bold;">public</span> <span style="color: #000066; font-weight: bold;">void</span> commandAction<span style="color: #009900;">&#40;</span>Command c, Displayable d<span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
        <span style="color: #000000; font-weight: bold;">if</span> <span style="color: #009900;">&#40;</span>c <span style="color: #339933;">==</span> cmdBack<span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
            destroyApp<span style="color: #009900;">&#40;</span><span style="color: #000066; font-weight: bold;">false</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
        <span style="color: #009900;">&#125;</span> <span style="color: #000000; font-weight: bold;">else</span> <span style="color: #009900;">&#123;</span>
            <span style="color: #000066; font-weight: bold;">int</span> indeks <span style="color: #339933;">=</span> list.<span style="color: #006633;">getSelectedIndex</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
            Alert info <span style="color: #339933;">=</span> <span style="color: #000000; font-weight: bold;">new</span> Alert<span style="color: #009900;">&#40;</span><span style="color: #0000ff;">&quot;Informasi&quot;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
            info.<span style="color: #006633;">setString</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">&quot;Anda memilih : &quot;</span> <span style="color: #339933;">+</span> list.<span style="color: #006633;">getString</span><span style="color: #009900;">&#40;</span>indeks<span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
            info.<span style="color: #006633;">setTimeout</span><span style="color: #009900;">&#40;</span>Alert.<span style="color: #006633;">FOREVER</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
            display.<span style="color: #006633;">setCurrent</span><span style="color: #009900;">&#40;</span>info, list<span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
        <span style="color: #009900;">&#125;</span>
    <span style="color: #009900;">&#125;</span>
<span style="color: #009900;">&#125;</span></pre></td></tr></table></div>

<p>Bentuk tipe List dapat dilihat pada gambar-gambar berikut:</p>
<table border="0">
<tbody>
<tr>
<td>
<p><div id="attachment_276" class="wp-caption alignnone" style="width: 201px"><img class="size-full wp-image-276 " title="j2me_list_exclusive" src="http://www.andisun.com/wp-content/uploads/2009/07/j2me_list_exclusive.png" alt="Tipe Exclusive" width="191" height="283" /><p class="wp-caption-text">Tipe Exclusive</p></div></td>
<td>
<p><div id="attachment_279" class="wp-caption alignnone" style="width: 204px"><img class="size-full wp-image-279 " title="j2me_list_exclusive02" src="http://www.andisun.com/wp-content/uploads/2009/07/j2me_list_exclusive02.png" alt="Setelah dipilih tombol &quot;Pilih&quot;" width="194" height="283" /><p class="wp-caption-text">Setelah dipilih tombol &quot;Pilih&quot;</p></div></td>
</tr>
</tbody>
</table>
<p>Jika di ubah tipe Listnya hasilnya masing-masing sebagai berikut:</p>
<table style="width: 100%;" border="0">
<tbody>
<tr>
<td>
<div id="attachment_276" class="wp-caption alignleft" style="width: 163px"><img class="size-full wp-image-276  " title="j2me_list_exclusive" src="http://www.andisun.com/wp-content/uploads/2009/07/j2me_list_exclusive.png" alt="Tipe Exclusive" width="153" height="226" /><p class="wp-caption-text">Tipe Exclusive</p></div>
<div id="attachment_277" class="wp-caption alignleft" style="width: 167px"><img class="size-full wp-image-277  " title="j2me_list_implicit" src="http://www.andisun.com/wp-content/uploads/2009/07/j2me_list_implicit.png" alt="Tipe Implicit" width="157" height="226" /><p class="wp-caption-text">Tipe Implicit</p></div>
<p><div id="attachment_278" class="wp-caption alignleft" style="width: 162px"><img class="size-full wp-image-278  " title="j2me_list_multiple" src="http://www.andisun.com/wp-content/uploads/2009/07/j2me_list_multiple.png" alt="Tipe Multiple" width="152" height="226" /><p class="wp-caption-text">Tipe Multiple</p></div></td>
</tr>
</tbody>
</table>
]]></content:encoded>
			<wfw:commentRss>http://www.andisun.com/tutorials/j2me-programming/memanfaatkan-class-list/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

