<?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>Silveira Neto &#187; Eclipse</title>
	<atom:link href="http://silveiraneto.net/tag/eclipse/feed/" rel="self" type="application/rss+xml" />
	<link>http://silveiraneto.net</link>
	<description>the world is a pixel</description>
	<lastBuildDate>Tue, 07 Sep 2010 13:12:43 +0000</lastBuildDate>
	<language>pt-br</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>Getting enviroment information on Android</title>
		<link>http://silveiraneto.net/2010/03/16/getting-enviroment-information-on-android/</link>
		<comments>http://silveiraneto.net/2010/03/16/getting-enviroment-information-on-android/#comments</comments>
		<pubDate>Tue, 16 Mar 2010 13:18:32 +0000</pubDate>
		<dc:creator>Silveira</dc:creator>
				<category><![CDATA[english]]></category>
		<category><![CDATA[Android]]></category>
		<category><![CDATA[Eclipse]]></category>
		<category><![CDATA[Java]]></category>
		<category><![CDATA[programming]]></category>
		<category><![CDATA[who am i]]></category>
		<category><![CDATA[whoami]]></category>

		<guid isPermaLink="false">http://silveiraneto.net/?p=3226</guid>
		<description><![CDATA[This is a simple program I wrote called Who Am I that shows informations about the device which it is running. Which can be useful for developers and maybe advanced users. Download: WhoAmI.tar.bz2 &#8211; Eclipse project. It&#8217;s configured for Android platform 4 (1.6) but should work without problems in newer Android platform versions. WhoAmI.apk &#8211; [...]]]></description>
			<content:encoded><![CDATA[<p>This is a simple program I wrote called <strong>Who Am I</strong> that shows informations about the device which it is running. Which can be useful for developers and maybe advanced users.</p>
<p style="text-align: center;"><img class="size-full wp-image-3227 aligncenter" title="whoami" src="http://silveiraneto.net/wp-content/uploads/2010/03/whoami.png" alt="" width="320" height="475" /></p>
<p><strong>Download</strong>:</p>
<ul>
<li><a href="http://silveiraneto.net/downloads/WhoAmI.tar.bz2">WhoAmI.tar.bz2</a> &#8211; Eclipse project. It&#8217;s configured for Android platform 4 (1.6) but should work without problems in newer Android platform versions.</li>
<li><a href="http://silveiraneto.net/downloads/WhoAmI.apk">WhoAmI.apk</a> &#8211; Application installation Android package.</li>
</ul>
<p>Main Activity source code:</p>
<div class="wp_syntax">
<div class="code">
<pre class="java java" style="font-family:monospace;"><span style="color: #000000; font-weight: bold;">package</span> <span style="color: #006699;">net.silveiraneto.whoami</span>;
&nbsp;
<span style="color: #000000; font-weight: bold;">import</span> <span style="color: #006699;">android.app.Activity</span>;
<span style="color: #000000; font-weight: bold;">import</span> <span style="color: #006699;">android.os.Build</span>;
<span style="color: #000000; font-weight: bold;">import</span> <span style="color: #006699;">android.os.Bundle</span>;
<span style="color: #000000; font-weight: bold;">import</span> <span style="color: #006699;">android.widget.EditText</span>;
&nbsp;
<span style="color: #000000; font-weight: bold;">public</span> <span style="color: #000000; font-weight: bold;">class</span> WhoAmI <span style="color: #000000; font-weight: bold;">extends</span> Activity <span style="color: #009900;">&#123;</span>
    <span style="color: #000000; font-weight: bold;">private</span> EditText mEditor;
&nbsp;
    @Override
    <span style="color: #000000; font-weight: bold;">public</span> <span style="color: #000066; font-weight: bold;">void</span> onCreate<span style="color: #009900;">&#40;</span>Bundle savedInstanceState<span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
        <span style="color: #000000; font-weight: bold;">super</span>.<span style="color: #006633;">onCreate</span><span style="color: #009900;">&#40;</span>savedInstanceState<span style="color: #009900;">&#41;</span>;
&nbsp;
        setContentView<span style="color: #009900;">&#40;</span>R.<span style="color: #006633;">layout</span>.<span style="color: #006633;">whoami</span><span style="color: #009900;">&#41;</span>;
&nbsp;
        mEditor <span style="color: #339933;">=</span> <span style="color: #009900;">&#40;</span>EditText<span style="color: #009900;">&#41;</span> findViewById<span style="color: #009900;">&#40;</span>R.<span style="color: #006633;">id</span>.<span style="color: #006633;">editor</span><span style="color: #009900;">&#41;</span>;
&nbsp;
        <span style="color: #003399;">Object</span><span style="color: #009900;">&#91;</span><span style="color: #009900;">&#93;</span><span style="color: #009900;">&#91;</span><span style="color: #009900;">&#93;</span> properties <span style="color: #339933;">=</span> <span style="color: #009900;">&#123;</span>
        	<span style="color: #009900;">&#123;</span><span style="color: #0000ff;">&quot;Build.BOARD&quot;</span>, Build.<span style="color: #006633;">BOARD</span><span style="color: #009900;">&#125;</span>,
        	<span style="color: #009900;">&#123;</span><span style="color: #0000ff;">&quot;Build.BRAND&quot;</span>, Build.<span style="color: #006633;">BRAND</span><span style="color: #009900;">&#125;</span>,
        	<span style="color: #009900;">&#123;</span><span style="color: #0000ff;">&quot;Build.CPU_ABI&quot;</span>, Build.<span style="color: #006633;">CPU_ABI</span><span style="color: #009900;">&#125;</span>,
        	<span style="color: #009900;">&#123;</span><span style="color: #0000ff;">&quot;Build.DEVICE&quot;</span>, Build.<span style="color: #006633;">DEVICE</span><span style="color: #009900;">&#125;</span>,
        	<span style="color: #009900;">&#123;</span><span style="color: #0000ff;">&quot;Build.DISPLAY&quot;</span>, Build.<span style="color: #006633;">DISPLAY</span><span style="color: #009900;">&#125;</span>,
        	<span style="color: #009900;">&#123;</span><span style="color: #0000ff;">&quot;Build.FINGERPRINT&quot;</span>, Build.<span style="color: #006633;">FINGERPRINT</span><span style="color: #009900;">&#125;</span>,
        	<span style="color: #009900;">&#123;</span><span style="color: #0000ff;">&quot;Build.HOST&quot;</span>, Build.<span style="color: #006633;">HOST</span><span style="color: #009900;">&#125;</span>,
        	<span style="color: #009900;">&#123;</span><span style="color: #0000ff;">&quot;Build.ID&quot;</span>, Build.<span style="color: #006633;">ID</span><span style="color: #009900;">&#125;</span>,
        	<span style="color: #009900;">&#123;</span><span style="color: #0000ff;">&quot;Build.MANUFACTURER&quot;</span>, Build.<span style="color: #006633;">MANUFACTURER</span><span style="color: #009900;">&#125;</span>,
        	<span style="color: #009900;">&#123;</span><span style="color: #0000ff;">&quot;Build.MODEL&quot;</span>, Build.<span style="color: #006633;">MODEL</span><span style="color: #009900;">&#125;</span>,
        	<span style="color: #009900;">&#123;</span><span style="color: #0000ff;">&quot;Build.PRODUCT&quot;</span>, Build.<span style="color: #006633;">PRODUCT</span><span style="color: #009900;">&#125;</span>,
        	<span style="color: #009900;">&#123;</span><span style="color: #0000ff;">&quot;Build.TAGS&quot;</span>, Build.<span style="color: #006633;">TAGS</span><span style="color: #009900;">&#125;</span>,
        	<span style="color: #009900;">&#123;</span><span style="color: #0000ff;">&quot;Build.TIME&quot;</span>, Build.<span style="color: #006633;">TIME</span><span style="color: #009900;">&#125;</span>,
        	<span style="color: #009900;">&#123;</span><span style="color: #0000ff;">&quot;Build.USER&quot;</span>, Build.<span style="color: #006633;">USER</span><span style="color: #009900;">&#125;</span>,
        <span style="color: #009900;">&#125;</span>;
&nbsp;
        <span style="color: #000000; font-weight: bold;">for</span><span style="color: #009900;">&#40;</span><span style="color: #003399;">Object</span><span style="color: #009900;">&#91;</span><span style="color: #009900;">&#93;</span> prop<span style="color: #339933;">:</span> properties<span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
        	mEditor.<span style="color: #006633;">append</span><span style="color: #009900;">&#40;</span><span style="color: #003399;">String</span>.<span style="color: #006633;">format</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">&quot;%s: %s<span style="color: #000099; font-weight: bold;">\n</span>&quot;</span>, prop<span style="color: #009900;">&#91;</span>0<span style="color: #009900;">&#93;</span>, prop<span style="color: #009900;">&#91;</span><span style="color: #cc66cc;">1</span><span style="color: #009900;">&#93;</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span>;
        <span style="color: #009900;">&#125;</span>
    <span style="color: #009900;">&#125;</span>
<span style="color: #009900;">&#125;</span></pre>
</div>
</div>
<p>And its Android Manifest:</p>
<div class="wp_syntax">
<div class="code">
<pre class="xml xml" style="font-family:monospace;"><span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;?xml</span> <span style="color: #000066;">version</span>=<span style="color: #ff0000;">&quot;1.0&quot;</span> <span style="color: #000066;">encoding</span>=<span style="color: #ff0000;">&quot;utf-8&quot;</span><span style="color: #000000; font-weight: bold;">?&gt;</span></span>
<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;manifest</span> <span style="color: #000066;">xmlns:android</span>=<span style="color: #ff0000;">&quot;http://schemas.android.com/apk/res/android&quot;</span></span>
<span style="color: #009900;">    <span style="color: #000066;">package</span>=<span style="color: #ff0000;">&quot;net.silveiraneto.whoami&quot;</span><span style="color: #000000; font-weight: bold;">&gt;</span></span>
    <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;application</span> <span style="color: #000066;">android:label</span>=<span style="color: #ff0000;">&quot;Who Am I&quot;</span><span style="color: #000000; font-weight: bold;">&gt;</span></span>
        <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;activity</span> <span style="color: #000066;">android:name</span>=<span style="color: #ff0000;">&quot;WhoAmI&quot;</span><span style="color: #000000; font-weight: bold;">&gt;</span></span>
            <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;intent-filter<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
                <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;action</span> <span style="color: #000066;">android:name</span>=<span style="color: #ff0000;">&quot;android.intent.action.MAIN&quot;</span> <span style="color: #000000; font-weight: bold;">/&gt;</span></span>
                <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;category</span> <span style="color: #000066;">android:name</span>=<span style="color: #ff0000;">&quot;android.intent.category.LAUNCHER&quot;</span> <span style="color: #000000; font-weight: bold;">/&gt;</span></span>
            <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/intent-filter<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
        <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/activity<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
    <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/application<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/manifest<span style="color: #000000; font-weight: bold;">&gt;</span></span></span></pre>
</div>
</div>
]]></content:encoded>
			<wfw:commentRss>http://silveiraneto.net/2010/03/16/getting-enviroment-information-on-android/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Eclipse and JavaFX</title>
		<link>http://silveiraneto.net/2008/12/24/eclipse-and-javafx/</link>
		<comments>http://silveiraneto.net/2008/12/24/eclipse-and-javafx/#comments</comments>
		<pubDate>Wed, 24 Dec 2008 03:43:43 +0000</pubDate>
		<dc:creator>Silveira</dc:creator>
				<category><![CDATA[english]]></category>
		<category><![CDATA[Eclipse]]></category>
		<category><![CDATA[Eclipse IDE]]></category>
		<category><![CDATA[ecosystem]]></category>
		<category><![CDATA[IDE]]></category>
		<category><![CDATA[JavaFX]]></category>
		<category><![CDATA[Museum]]></category>
		<category><![CDATA[programming]]></category>
		<category><![CDATA[Sobral]]></category>
		<category><![CDATA[tools]]></category>

		<guid isPermaLink="false">http://silveiraneto.net/?p=1986</guid>
		<description><![CDATA[For those who uses Eclipse IDE: there&#8217;s already a JavaFX plugin for you. Check out here. To try out, Paul Bakker wrote a post introduction showing how to create a cool first application. Is a another big free organism in our JavaFX ecosystem!]]></description>
			<content:encoded><![CDATA[<p style="text-align: center;"><a title="Myself and friends at the &quot;Eclipse Museum&quot; @Sobral" href="http://www.flickr.com/photos/silveiraneto/2937006610/"><img class="aligncenter" src="http://farm4.static.flickr.com/3182/2937006610_1101a382e5.jpg" alt="Museu do Eclipse" width="500" height="375" /></a></p>
<p>For those who uses <a title="Eclipse Project" href="http://www.eclipse.org/">Eclipse IDE</a>: there&#8217;s already a JavaFX plugin for you. <a href="http://download.java.net/general/openjfx/plugins/eclipse/plugins/">Check out here</a>. To try out, <a title="Running JavaFX from Eclipse" href="http://blogs.infosupport.com/blogs/paul_bakker/archive/2007/05/13/Running-JavaFX-from-Eclipse.aspx">Paul Bakker wrote a post</a> introduction showing how to create a cool first application.</p>
<p>Is a another big free organism in our JavaFX ecosystem!</p>
]]></content:encoded>
			<wfw:commentRss>http://silveiraneto.net/2008/12/24/eclipse-and-javafx/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Anúncio do NetBeans 6.5 Beta</title>
		<link>http://silveiraneto.net/2008/08/13/anuncio-do-netbeans-65-beta/</link>
		<comments>http://silveiraneto.net/2008/08/13/anuncio-do-netbeans-65-beta/#comments</comments>
		<pubDate>Wed, 13 Aug 2008 15:22:19 +0000</pubDate>
		<dc:creator>Silveira</dc:creator>
				<category><![CDATA[português]]></category>
		<category><![CDATA[Ajax]]></category>
		<category><![CDATA[banco de dados]]></category>
		<category><![CDATA[beta]]></category>
		<category><![CDATA[C]]></category>
		<category><![CDATA[Eclipse]]></category>
		<category><![CDATA[GlassFish]]></category>
		<category><![CDATA[Grails]]></category>
		<category><![CDATA[Groovy]]></category>
		<category><![CDATA[Java]]></category>
		<category><![CDATA[JavaScript]]></category>
		<category><![CDATA[netbeans]]></category>
		<category><![CDATA[rails]]></category>
		<category><![CDATA[Ruby]]></category>

		<guid isPermaLink="false">http://silveiraneto.net/?p=1081</guid>
		<description><![CDATA[O Netbeans.org anunciou a disponibilidade do NetBeans IDE 6.5 Beta. Abaixo a tradução do anúncio: O NetBeans IDE 6.5 introduz várias novas funcionalidades, incluindo uma IDE robusta para PHP, deputação de JavaScript para o Firefox e IE, e suporte a Groovy e Grails. Esse lançamento também inclui várias melhorias para o desenvolvimento em Java, Ruby [...]]]></description>
			<content:encoded><![CDATA[<p style="text-align: center;"><a title="Download Now" href="http://download.netbeans.org/netbeans/6.5/beta/"><img class="size-full wp-image-1082 aligncenter" title="netbeans-65-beta" src="http://silveiraneto.net/wp-content/uploads/2008/08/netbeans-65-beta.png" alt="" width="400" height="137" /></a></p>
<p>O <a title="NetBeans" href="http://netbeans.org">Netbeans.org</a> anunciou a disponibilidade do <a title="NetBeans 6.5 Beta" href="http://www.netbeans.org/community/releases/65/">NetBeans IDE 6.5 Beta</a>. Abaixo a tradução do anúncio:</p>
<p>O NetBeans IDE 6.5 introduz várias novas funcionalidades, incluindo uma IDE robusta para PHP, deputação de JavaScript para o Firefox e IE, e suporte a Groovy e Grails. Esse lançamento também inclui várias melhorias para o desenvolvimento em Java, Ruby e Rails, e C/C++. Dentre as melhorias no Java destacam-se: suporte nativo ao Hibernate, importação de projetos do Eclipse, e compilação no salvamento.</p>
<p>Links:</p>
<ul>
<li><a title="Download Now" href="http://download.netbeans.org/netbeans/6.5/beta/">Faça o Download</a></li>
<li><a title="Saiba Mais" href="http://www.netbeans.org/community/releases/65/">Saiba Mais</a></li>
<li><a href="http://www.netbeans.org/kb/index.html">Tutoriais &amp; Documentação</a></li>
</ul>
<p>Outros destaques:</p>
<ul>
<li> PHP
<ul>
<li>Completação de código</li>
<li>Consertos rápidos e checagem semântica</li>
<li>Suporte a FTP</li>
<li>Depuração com Xdebug</li>
<li>Suporte a Web Services populares</li>
</ul>
</li>
<li>Ajax/JavaScript
<ul>
<li>Suporte a depuração no Firefox e IE</li>
<li>Monitoramento cliente de HTTP</li>
<li>Vêm com as bibliotecas mais populares de JavaScript</li>
</ul>
</li>
<li>Java
<ul>
<li>Suporte a Groovy/Grails</li>
<li>Compilação/Deploy no momento do salvamento</li>
<li>Importação e sincronização de projetos do Eclipse</li>
<li>Suporte nativo a Hibernate</li>
<li>Gerador de CRUD JSF agora com Ajax</li>
</ul>
</li>
<li>Banco de Dados
<ul>
<li>Melhorias no editor</li>
</ul>
</li>
<li>C/C++
<ul>
<li>Melhorias na completação de código e destaque de erros</li>
<li>Desenvolvimento remoto</li>
</ul>
</li>
<li>Ruby
<ul>
<li>Suporte aos Testes Ruby</li>
<li>Melhoria no suporte a Rake</li>
</ul>
</li>
<li>GlassFish V3 &#8220;Prelude&#8221;
<ul>
<li>Menor tamanho, inicialização e deployment mais rápido</li>
<li>Suporte a scripting, inclusive jRuby</li>
</ul>
</li>
</ul>
<div id=":vc" class="ArwC7c ckChnd">
<div>
<div lang="x-western">
<p>O NetBeans IDE 6.5 final está planejado para ser lançado em Outubro de 2008. Como sempre, é bem vindo e nós encorajamos seu feedback sobre sua experiência usando a IDE NetBeans. Visite nossas <a href="http://www.netbeans.org/community/lists/top.html">listas de email</a> ou <a href="http://planetnetbeans.org/">faça uma postagem</a> no seu blog.</div>
</div>
</div>
]]></content:encoded>
			<wfw:commentRss>http://silveiraneto.net/2008/08/13/anuncio-do-netbeans-65-beta/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>
