<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	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/"
		>
<channel>
	<title>Comments on: Zmanim Q &amp; A Forum</title>
	<atom:link href="http://www.kosherjava.com/zmanim-project/zmanim-q-a-forum/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.kosherjava.com</link>
	<description>A weblog about Zmanim, Kosher Coffee (Kosher Java) and other odds &#38; ends</description>
	<lastBuildDate>Thu, 19 Jan 2012 06:11:31 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
	<item>
		<title>By: Samit</title>
		<link>http://www.kosherjava.com/zmanim-project/zmanim-q-a-forum/comment-page-1/#comment-71161</link>
		<dc:creator>Samit</dc:creator>
		<pubDate>Thu, 01 Jan 1970 00:00:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.kosherjava.com/?page_id=53#comment-71161</guid>
		<description>Thank you very much...

now my problem solved for using your sample code.i checked but some step missing in my code so not got answer.. now this sample its very helpful me. thanks for your suggestion and demo sample.</description>
		<content:encoded><![CDATA[<p>Thank you very much&#8230;</p>
<p>now my problem solved for using your sample code.i checked but some step missing in my code so not got answer.. now this sample its very helpful me. thanks for your suggestion and demo sample.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: KosherJava</title>
		<link>http://www.kosherjava.com/zmanim-project/zmanim-q-a-forum/comment-page-1/#comment-71160</link>
		<dc:creator>KosherJava</dc:creator>
		<pubDate>Thu, 01 Jan 1970 00:00:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.kosherjava.com/?page_id=53#comment-71160</guid>
		<description>Samit,
Here is some sample code. I am afraid that I can&#039;t offer any additional help at this point. The code below should have been pretty clear from the JavaDocs. 

[java]
JewishCalendar jd = new JewishCalendar(); //current date
HebrewDateFormatter hdf = new HebrewDateFormatter();
System.out.println(jd); //prints hebrew date in English chars - 24 Teves, 5772
System.out.println(jd.getDayOfOmer()); //-1 since there is no omer count this time of year
System.out.println(hdf.formatYomTov(jd)); //nothing printed since it is not a holiday
jd.setJewishDate(5772, JewishDate.NISSAN, 18); //change date to one that is a holiday and has an Omer count
System.out.println(jd.getDayOfOmer()); //3rd day of omer
System.out.println(hdf.formatOmer(jd));
System.out.println(hdf.formatYomTov(jd)); //Chol Hamoed Pesach
hdf.setHebrewFormat(true); //change formatting to Hebrew
System.out.println(hdf.format(jd)); //date formatted in Hebrew
System.out.println(hdf.formatOmer(jd)); //3rd day of Omer in Hebrew
System.out.println(hdf.formatYomTov(jd)); //Chol Hamoed Pesach in Hebrew
[/java]</description>
		<content:encoded><![CDATA[<p>Samit,<br />
Here is some sample code. I am afraid that I can&#8217;t offer any additional help at this point. The code below should have been pretty clear from the JavaDocs. </p>
<pre class="brush: java; title: ; notranslate">
JewishCalendar jd = new JewishCalendar(); //current date
HebrewDateFormatter hdf = new HebrewDateFormatter();
System.out.println(jd); //prints hebrew date in English chars - 24 Teves, 5772
System.out.println(jd.getDayOfOmer()); //-1 since there is no omer count this time of year
System.out.println(hdf.formatYomTov(jd)); //nothing printed since it is not a holiday
jd.setJewishDate(5772, JewishDate.NISSAN, 18); //change date to one that is a holiday and has an Omer count
System.out.println(jd.getDayOfOmer()); //3rd day of omer
System.out.println(hdf.formatOmer(jd));
System.out.println(hdf.formatYomTov(jd)); //Chol Hamoed Pesach
hdf.setHebrewFormat(true); //change formatting to Hebrew
System.out.println(hdf.format(jd)); //date formatted in Hebrew
System.out.println(hdf.formatOmer(jd)); //3rd day of Omer in Hebrew
System.out.println(hdf.formatYomTov(jd)); //Chol Hamoed Pesach in Hebrew
</pre>
]]></content:encoded>
	</item>
	<item>
		<title>By: Samit</title>
		<link>http://www.kosherjava.com/zmanim-project/zmanim-q-a-forum/comment-page-1/#comment-71157</link>
		<dc:creator>Samit</dc:creator>
		<pubDate>Thu, 01 Jan 1970 00:00:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.kosherjava.com/?page_id=53#comment-71157</guid>
		<description>Thanks for your quickly reply..

i checked net.sourceforge.zmanim.hebrewcalendar package but not found specific function which i mentioned my above post..

can you give me some description or some suggestion for how to check specific date is current holiday or not and if holiday then i need to holiday name.. i checked hebrewcalendar  package but not found or not understand which function i use so please any suggestion..

Thanks</description>
		<content:encoded><![CDATA[<p>Thanks for your quickly reply..</p>
<p>i checked net.sourceforge.zmanim.hebrewcalendar package but not found specific function which i mentioned my above post..</p>
<p>can you give me some description or some suggestion for how to check specific date is current holiday or not and if holiday then i need to holiday name.. i checked hebrewcalendar  package but not found or not understand which function i use so please any suggestion..</p>
<p>Thanks</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: KosherJava</title>
		<link>http://www.kosherjava.com/zmanim-project/zmanim-q-a-forum/comment-page-1/#comment-71150</link>
		<dc:creator>KosherJava</dc:creator>
		<pubDate>Thu, 01 Jan 1970 00:00:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.kosherjava.com/?page_id=53#comment-71150</guid>
		<description>Samit,
I suggest that you check out the KosherJava &lt;a href=&quot;/zmanim/docs/api/&quot; rel=&quot;nofollow&quot;&gt;Zmanim API Javadocs&lt;/a&gt;. Specifically look at the net.sourceforge.zmanim.hebrewcalendar package. This package (unlike the rest of the code in the API) is at alpha quality now, but does work.</description>
		<content:encoded><![CDATA[<p>Samit,<br />
I suggest that you check out the KosherJava <a href="/zmanim/docs/api/" rel="nofollow">Zmanim API Javadocs</a>. Specifically look at the net.sourceforge.zmanim.hebrewcalendar package. This package (unlike the rest of the code in the API) is at alpha quality now, but does work.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Samit</title>
		<link>http://www.kosherjava.com/zmanim-project/zmanim-q-a-forum/comment-page-1/#comment-71111</link>
		<dc:creator>Samit</dc:creator>
		<pubDate>Thu, 01 Jan 1970 00:00:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.kosherjava.com/?page_id=53#comment-71111</guid>
		<description>Hy,

can you please tell me any function in this api to check its holiday in jewish calendar for specific date ...

i need to list of all holidays list of jewish calendar , list of days of Rosh Chodesh holidays , and  Omer holidays number.. i checked in libhdate provide all functions , but i not found these all functions or functionality in this api.. can you please inform me below all functions are available in java api or not ?

i need below all functions functionality...

- get_holyday_type() -- the holiday type 
- get_omer_day() -- get the day of the omer
- get_holyday_string() -- string of hebrew holiday name
- get_holyday() --  the hebrew holiday number

any other suggestion welcome.

Thanks</description>
		<content:encoded><![CDATA[<p>Hy,</p>
<p>can you please tell me any function in this api to check its holiday in jewish calendar for specific date &#8230;</p>
<p>i need to list of all holidays list of jewish calendar , list of days of Rosh Chodesh holidays , and  Omer holidays number.. i checked in libhdate provide all functions , but i not found these all functions or functionality in this api.. can you please inform me below all functions are available in java api or not ?</p>
<p>i need below all functions functionality&#8230;</p>
<p>- get_holyday_type() &#8212; the holiday type<br />
- get_omer_day() &#8212; get the day of the omer<br />
- get_holyday_string() &#8212; string of hebrew holiday name<br />
- get_holyday() &#8212;  the hebrew holiday number</p>
<p>any other suggestion welcome.</p>
<p>Thanks</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: KosherJava</title>
		<link>http://www.kosherjava.com/zmanim-project/zmanim-q-a-forum/comment-page-1/#comment-66396</link>
		<dc:creator>KosherJava</dc:creator>
		<pubDate>Thu, 01 Jan 1970 00:00:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.kosherjava.com/?page_id=53#comment-66396</guid>
		<description>Contact the author Moshe Wagner at the email address mentioned in the &lt;a href=&quot;/2009/03/14/zmanim-gui-released/&quot; rel=&quot;nofollow&quot;&gt;Zmanim GUI Released&lt;/a&gt; post, or via his  &lt;a href=&quot;http://dosilinux.wordpress.com/&quot; rel=&quot;nofollow&quot;&gt;פינגווין עם כיפה&lt;/a&gt; blog.</description>
		<content:encoded><![CDATA[<p>Contact the author Moshe Wagner at the email address mentioned in the <a href="/2009/03/14/zmanim-gui-released/" rel="nofollow">Zmanim GUI Released</a> post, or via his  <a href="http://dosilinux.wordpress.com/" rel="nofollow">פינגווין עם כיפה</a> blog.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jerry Eizen</title>
		<link>http://www.kosherjava.com/zmanim-project/zmanim-q-a-forum/comment-page-1/#comment-66394</link>
		<dc:creator>Jerry Eizen</dc:creator>
		<pubDate>Thu, 01 Jan 1970 00:00:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.kosherjava.com/?page_id=53#comment-66394</guid>
		<description>Just got the ZmanimGUI working. Is there a way to get Misheyakir to show on it?</description>
		<content:encoded><![CDATA[<p>Just got the ZmanimGUI working. Is there a way to get Misheyakir to show on it?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: KosherJava</title>
		<link>http://www.kosherjava.com/zmanim-project/zmanim-q-a-forum/comment-page-1/#comment-65776</link>
		<dc:creator>KosherJava</dc:creator>
		<pubDate>Thu, 01 Jan 1970 00:00:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.kosherjava.com/?page_id=53#comment-65776</guid>
		<description>Charles,
There was a typo in the URL I used, and it is now pointing the the proper one. Please try clicking the link again. The URL is &lt;a href=&quot;http://www.kosherjava.com/zmanim-project/zmanim-calendar-generator/&quot; rel=&quot;nofollow&quot;&gt;http://www.kosherjava.com/zmanim-project/zmanim-calendar-generator/&lt;/a&gt;.</description>
		<content:encoded><![CDATA[<p>Charles,<br />
There was a typo in the URL I used, and it is now pointing the the proper one. Please try clicking the link again. The URL is <a href="http://www.kosherjava.com/zmanim-project/zmanim-calendar-generator/" rel="nofollow">http://www.kosherjava.com/zmanim-project/zmanim-calendar-generator/</a>.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Charles</title>
		<link>http://www.kosherjava.com/zmanim-project/zmanim-q-a-forum/comment-page-1/#comment-65775</link>
		<dc:creator>Charles</dc:creator>
		<pubDate>Thu, 01 Jan 1970 00:00:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.kosherjava.com/?page_id=53#comment-65775</guid>
		<description>you wrote &quot;Zmanim Calendar Generator. This will generate a spreadsheet with zmanim for the entire year. You will also find a link to this on the bottom of the zmanim list in the Zmanim Map&quot; I tries clicking on &quot;Zmanim Calendar Generator&quot; and the link was dead.
Thanks</description>
		<content:encoded><![CDATA[<p>you wrote &#8220;Zmanim Calendar Generator. This will generate a spreadsheet with zmanim for the entire year. You will also find a link to this on the bottom of the zmanim list in the Zmanim Map&#8221; I tries clicking on &#8220;Zmanim Calendar Generator&#8221; and the link was dead.<br />
Thanks</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: KosherJava</title>
		<link>http://www.kosherjava.com/zmanim-project/zmanim-q-a-forum/comment-page-1/#comment-65448</link>
		<dc:creator>KosherJava</dc:creator>
		<pubDate>Thu, 01 Jan 1970 00:00:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.kosherjava.com/?page_id=53#comment-65448</guid>
		<description>Charles,
Thanks for your interst. This site is targeted mostly at software developers interested in using zmanim in their programs. That said, there are 2 very easy to use ways to get the zmanim you require
&lt;ul&gt;
&lt;li&gt;The &lt;a href=&quot;/maps/zmanim.html&quot; rel=&quot;nofollow&quot;&gt;Zmanim Map&lt;/a&gt;. This is a quick way to get the zmanim for the current day on a map&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;/zmanim-project/zmanim-calendar-generator/&quot; rel=&quot;nofollow&quot;&gt;Zmanim Calendar Generator&lt;/a&gt;. This will generate a spreadsheet with zmanim for the entire year. You will also find a link to this on the bottom of the zmanim list in the Zmanim Map&lt;/li&gt;
&lt;/ul&gt;
Please let me know if there is anything specific that you are looking for.</description>
		<content:encoded><![CDATA[<p>Charles,<br />
Thanks for your interst. This site is targeted mostly at software developers interested in using zmanim in their programs. That said, there are 2 very easy to use ways to get the zmanim you require</p>
<ul>
<li>The <a href="/maps/zmanim.html" rel="nofollow">Zmanim Map</a>. This is a quick way to get the zmanim for the current day on a map</li>
<li><a href="/zmanim-project/zmanim-calendar-generator/" rel="nofollow">Zmanim Calendar Generator</a>. This will generate a spreadsheet with zmanim for the entire year. You will also find a link to this on the bottom of the zmanim list in the Zmanim Map</li>
</ul>
<p>Please let me know if there is anything specific that you are looking for.</p>
]]></content:encoded>
	</item>
</channel>
</rss>

