<?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/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
		>
<channel>
	<title>Comments for AleXander ZYnevich's blog</title>
	<atom:link href="http://axzy.wordpress.com/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://axzy.wordpress.com</link>
	<description>Just another WordPress.com weblog</description>
	<lastBuildDate>Sun, 27 Dec 2009 21:23:36 +0000</lastBuildDate>
	<generator>http://wordpress.com/</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>Comment on Siemens Gigaset SL780 by БOГИHЯкaвкaзa</title>
		<link>http://axzy.wordpress.com/2009/10/07/siemens-gigaset-sl780/#comment-42</link>
		<dc:creator>БOГИHЯкaвкaзa</dc:creator>
		<pubDate>Sun, 27 Dec 2009 21:23:36 +0000</pubDate>
		<guid isPermaLink="false">http://axzy.wordpress.com/?p=17#comment-42</guid>
		<description>Да таков наш современный мир и боюсь с этим ни чего не поделать:)</description>
		<content:encoded><![CDATA[<p>Да таков наш современный мир и боюсь с этим ни чего не поделать:)</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on How to escape curly brackets (braces) in JavaFX? I know how, but this is dull&#8230; by Alexander Zynevich</title>
		<link>http://axzy.wordpress.com/2008/01/14/how-to-escape-curly-brackets-braces-in-javafx-i-know-how-but-this-is-dull/#comment-4</link>
		<dc:creator>Alexander Zynevich</dc:creator>
		<pubDate>Mon, 14 Jan 2008 16:08:18 +0000</pubDate>
		<guid isPermaLink="false">http://axzy.wordpress.com/2008/01/14/how-to-escape-curly-brackets-braces-in-javafx-i-know-how-but-this-is-dull/#comment-4</guid>
		<description>However ability to escape closing bracket would be very helpful...
say in Java in &quot;&quot; you should not generally escape &#039; but you could if you like, and vice versa in &#039;&#039; you may choose to escape &quot; or not.

so 

case &#039;\&quot;&#039;:
case &#039;\&#039;&#039;:
    // handle quotes

looks much better than

case &#039;&quot;&#039;:
case &#039;\&#039;&#039;:
    // handle quotes


That is why I would have \} escape sequence...</description>
		<content:encoded><![CDATA[<p>However ability to escape closing bracket would be very helpful&#8230;<br />
say in Java in &#8220;&#8221; you should not generally escape &#8216; but you could if you like, and vice versa in &#8221; you may choose to escape &#8221; or not.</p>
<p>so </p>
<p>case &#8216;\&#8221;&#8216;:<br />
case &#8216;\&#8221;:<br />
    // handle quotes</p>
<p>looks much better than</p>
<p>case &#8216;&#8221;&#8216;:<br />
case &#8216;\&#8221;:<br />
    // handle quotes</p>
<p>That is why I would have \} escape sequence&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on How to escape curly brackets (braces) in JavaFX? I know how, but this is dull&#8230; by Alexander Zynevich</title>
		<link>http://axzy.wordpress.com/2008/01/14/how-to-escape-curly-brackets-braces-in-javafx-i-know-how-but-this-is-dull/#comment-3</link>
		<dc:creator>Alexander Zynevich</dc:creator>
		<pubDate>Mon, 14 Jan 2008 16:01:10 +0000</pubDate>
		<guid isPermaLink="false">http://axzy.wordpress.com/2008/01/14/how-to-escape-curly-brackets-braces-in-javafx-i-know-how-but-this-is-dull/#comment-3</guid>
		<description>Thanky, Jim!
Shame on me, I tried to escape them both, and I got something like 
Error in file:/home/alex/NetBeansProjects/L2/src/l2/Main.fx:27: &quot;file:/home/alex/NetBeansProjects/L2/src/l2/Main.fx&quot;: Lexical error at line 27, column 31.  Encountered: &quot;}&quot; (125), after : &quot;\\&quot;
The message is pretty clear I should understand that only \} is prohibited.

Thanks a lot!
As a guru you may be interesting in the following construct:
&lt;code&gt;System.out.println(&quot;{ &quot;{ &quot;{100}&quot; }&quot;  }&quot;);&lt;/code&gt;
which produces 100.
The idea of this: enclose into string concatenation another construction that is concatenation it self...
&lt;code&gt;System.out.println(&quot;1 level\{{ &quot;2 level\{{ &quot;3 level has value = {100}&quot; }}&quot;  }}&quot;);&lt;/code&gt;
which produces:
1 level{2 level{3 level has value = 100}}

Alas the latest NetBeans plugin is not capable to render it with nice highlighting :)</description>
		<content:encoded><![CDATA[<p>Thanky, Jim!<br />
Shame on me, I tried to escape them both, and I got something like<br />
Error in file:/home/alex/NetBeansProjects/L2/src/l2/Main.fx:27: &#8220;file:/home/alex/NetBeansProjects/L2/src/l2/Main.fx&#8221;: Lexical error at line 27, column 31.  Encountered: &#8220;}&#8221; (125), after : &#8220;\\&#8221;<br />
The message is pretty clear I should understand that only \} is prohibited.</p>
<p>Thanks a lot!<br />
As a guru you may be interesting in the following construct:<br />
<code>System.out.println("{ "{ "{100}" }"  }");</code><br />
which produces 100.<br />
The idea of this: enclose into string concatenation another construction that is concatenation it self&#8230;<br />
<code>System.out.println("1 level\{{ "2 level\{{ "3 level has value = {100}" }}"  }}");</code><br />
which produces:<br />
1 level{2 level{3 level has value = 100}}</p>
<p>Alas the latest NetBeans plugin is not capable to render it with nice highlighting <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on How to escape curly brackets (braces) in JavaFX? I know how, but this is dull&#8230; by Jim Weaver</title>
		<link>http://axzy.wordpress.com/2008/01/14/how-to-escape-curly-brackets-braces-in-javafx-i-know-how-but-this-is-dull/#comment-2</link>
		<dc:creator>Jim Weaver</dc:creator>
		<pubDate>Mon, 14 Jan 2008 15:04:41 +0000</pubDate>
		<guid isPermaLink="false">http://axzy.wordpress.com/2008/01/14/how-to-escape-curly-brackets-braces-in-javafx-i-know-how-but-this-is-dull/#comment-2</guid>
		<description>You only need to escape the { not the }

Use the backslash \ to escape.  You can also escape embedded double quotes with a \

Thanks,
Jim Weaver
Helping You Become a &quot;JavaFXpert&quot; Weblog:
http://javafxpert.com</description>
		<content:encoded><![CDATA[<p>You only need to escape the { not the }</p>
<p>Use the backslash \ to escape.  You can also escape embedded double quotes with a \</p>
<p>Thanks,<br />
Jim Weaver<br />
Helping You Become a &#8220;JavaFXpert&#8221; Weblog:<br />
<a href="http://javafxpert.com" rel="nofollow">http://javafxpert.com</a></p>
]]></content:encoded>
	</item>
</channel>
</rss>
