<?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>idError &#187; JAVA-Compiler</title>
	<atom:link href="http://iderror.com/category/errors/java/java-compiler/feed/" rel="self" type="application/rss+xml" />
	<link>http://iderror.com</link>
	<description>You have errors, we have solutions!</description>
	<lastBuildDate>Sun, 22 Mar 2009 21:18:56 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>The method x declared in class y cannot override the method of the same signature declared in class z</title>
		<link>http://iderror.com/errors/java/java-compiler/the-method-x-declared-in-class-y-cannot-override-the-method-of-the-same-signature-declared-in-class-z/</link>
		<comments>http://iderror.com/errors/java/java-compiler/the-method-x-declared-in-class-y-cannot-override-the-method-of-the-same-signature-declared-in-class-z/#comments</comments>
		<pubDate>Mon, 09 Mar 2009 14:20:06 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[JAVA-Compiler]]></category>

		<guid isPermaLink="false">http://localhost/idError/?p=549</guid>
		<description><![CDATA[Applies to:NA Description:The method in a subclass unsuccessfully overrides a method in a superclass Cause:The return types are different
]]></description>
			<content:encoded><![CDATA[<p><b>Applies to:</b><br/>NA<br/><br/> <b>Description:</b><br/>The method in a subclass unsuccessfully overrides a method in a superclass<br/><br/> <b>Cause:</b><br/>The return types are different<br/><br/></p>
]]></content:encoded>
			<wfw:commentRss>http://iderror.com/errors/java/java-compiler/the-method-x-declared-in-class-y-cannot-override-the-method-of-the-same-signature-declared-in-class-z/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>try&#8217; without &#8216;catch&#8217; or &#8216;finally&#8217;</title>
		<link>http://iderror.com/errors/java/java-compiler/try-without-catch-or-finally/</link>
		<comments>http://iderror.com/errors/java/java-compiler/try-without-catch-or-finally/#comments</comments>
		<pubDate>Mon, 09 Mar 2009 14:20:06 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[JAVA-Compiler]]></category>

		<guid isPermaLink="false">http://localhost/idError/?p=550</guid>
		<description><![CDATA[Applies to:NA Description:A try block does not contain a catch block Cause:The try block is omitted.
]]></description>
			<content:encoded><![CDATA[<p><b>Applies to:</b><br/>NA<br/><br/> <b>Description:</b><br/>A try block does not contain a catch block<br/><br/> <b>Cause:</b><br/>The try block is omitted.<br/><br/></p>
]]></content:encoded>
			<wfw:commentRss>http://iderror.com/errors/java/java-compiler/try-without-catch-or-finally/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Variable x is already defined in this method</title>
		<link>http://iderror.com/errors/java/java-compiler/variable-x-is-already-defined-in-this-method/</link>
		<comments>http://iderror.com/errors/java/java-compiler/variable-x-is-already-defined-in-this-method/#comments</comments>
		<pubDate>Mon, 09 Mar 2009 14:20:06 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[JAVA-Compiler]]></category>

		<guid isPermaLink="false">http://localhost/idError/?p=551</guid>
		<description><![CDATA[Applies to:NA Description:There is more than one declaration of the same variable in the same method Cause:The variable is declared more than once:
 public void myTest()
    {
        int x = 0;
        System.out.println(x);
       [...]]]></description>
			<content:encoded><![CDATA[<p><b>Applies to:</b><br/>NA<br/><br/> <b>Description:</b><br/>There is more than one declaration of the same variable in the same method<br/><br/> <b>Cause:</b><br/>The variable is declared more than once:<br />
 public void myTest()<br />
    {<br />
        int x = 0;<br />
        System.out.println(x);<br />
        int x = 8;<br />
        System.out.println(x);<br />
    } <br/><br/></p>
]]></content:encoded>
			<wfw:commentRss>http://iderror.com/errors/java/java-compiler/variable-x-is-already-defined-in-this-method/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Variable x may not have been initialized</title>
		<link>http://iderror.com/errors/java/java-compiler/variable-x-may-not-have-been-initialized/</link>
		<comments>http://iderror.com/errors/java/java-compiler/variable-x-may-not-have-been-initialized/#comments</comments>
		<pubDate>Mon, 09 Mar 2009 14:20:06 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[JAVA-Compiler]]></category>

		<guid isPermaLink="false">http://localhost/idError/?p=552</guid>
		<description><![CDATA[Applies to:NA Description:A variable being accessed is not yet initialized Cause:An uninitialized variable is being accessed:
  int x;
  System.out.println(x); 
]]></description>
			<content:encoded><![CDATA[<p><b>Applies to:</b><br/>NA<br/><br/> <b>Description:</b><br/>A variable being accessed is not yet initialized<br/><br/> <b>Cause:</b><br/>An uninitialized variable is being accessed:<br />
  int x;<br />
  System.out.println(x); <br/><br/></p>
]]></content:encoded>
			<wfw:commentRss>http://iderror.com/errors/java/java-compiler/variable-x-may-not-have-been-initialized/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Class is public, should be declared in a file named</title>
		<link>http://iderror.com/errors/java/java-compiler/class-is-public-should-be-declared-in-a-file-named/</link>
		<comments>http://iderror.com/errors/java/java-compiler/class-is-public-should-be-declared-in-a-file-named/#comments</comments>
		<pubDate>Mon, 09 Mar 2009 14:20:06 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[JAVA-Compiler]]></category>

		<guid isPermaLink="false">http://localhost/idError/?p=553</guid>
		<description><![CDATA[Applies to:NA Description:The source filename and class name defined in the file are not the same Cause:Example is the filename is Test and the class name is MyTest.
]]></description>
			<content:encoded><![CDATA[<p><b>Applies to:</b><br/>NA<br/><br/> <b>Description:</b><br/>The source filename and class name defined in the file are not the same<br/><br/> <b>Cause:</b><br/>Example is the filename is Test and the class name is MyTest.<br/><br/></p>
]]></content:encoded>
			<wfw:commentRss>http://iderror.com/errors/java/java-compiler/class-is-public-should-be-declared-in-a-file-named/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Possible loss of precision</title>
		<link>http://iderror.com/errors/java/java-compiler/possible-loss-of-precision/</link>
		<comments>http://iderror.com/errors/java/java-compiler/possible-loss-of-precision/#comments</comments>
		<pubDate>Mon, 09 Mar 2009 14:20:06 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[JAVA-Compiler]]></category>

		<guid isPermaLink="false">http://localhost/idError/?p=554</guid>
		<description><![CDATA[Applies to:NA Description:A variable of type double is assigned to int Cause:Example is:
 double y = 3.14;
 int x;
 x = y;
]]></description>
			<content:encoded><![CDATA[<p><b>Applies to:</b><br/>NA<br/><br/> <b>Description:</b><br/>A variable of type double is assigned to int<br/><br/> <b>Cause:</b><br/>Example is:<br />
 double y = 3.14;<br />
 int x;<br />
 x = y;<br/><br/></p>
]]></content:encoded>
			<wfw:commentRss>http://iderror.com/errors/java/java-compiler/possible-loss-of-precision/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Cannot find symbol &#8211; class</title>
		<link>http://iderror.com/errors/java/java-compiler/cannot-find-symbol-class/</link>
		<comments>http://iderror.com/errors/java/java-compiler/cannot-find-symbol-class/#comments</comments>
		<pubDate>Mon, 09 Mar 2009 14:20:06 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[JAVA-Compiler]]></category>

		<guid isPermaLink="false">http://localhost/idError/?p=555</guid>
		<description><![CDATA[Applies to:NA Description:The compiler does not recognize the class name you used Cause:a. Typographical and case issues
b. The class used is not imported
  public class Input
  {
  public static void main( String [] args )
  {
  Scanner scan = new Scanner( System.in );
      // code [...]]]></description>
			<content:encoded><![CDATA[<p><b>Applies to:</b><br/>NA<br/><br/> <b>Description:</b><br/>The compiler does not recognize the class name you used<br/><br/> <b>Cause:</b><br/>a. Typographical and case issues<br />
b. The class used is not imported<br />
  public class Input<br />
  {<br />
  public static void main( String [] args )<br />
  {<br />
  Scanner scan = new Scanner( System.in );<br />
      // code here <br/><br/></p>
]]></content:encoded>
			<wfw:commentRss>http://iderror.com/errors/java/java-compiler/cannot-find-symbol-class/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>operator &amp;&amp; cannot be applied to boolean</title>
		<link>http://iderror.com/errors/java/java-compiler/operator-cannot-be-applied-to-boolean/</link>
		<comments>http://iderror.com/errors/java/java-compiler/operator-cannot-be-applied-to-boolean/#comments</comments>
		<pubDate>Mon, 09 Mar 2009 14:20:06 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[JAVA-Compiler]]></category>

		<guid isPermaLink="false">http://localhost/idError/?p=556</guid>
		<description><![CDATA[Applies to:NA Description:A boolean operator is being used with an operand that does not equal to true or false Cause:The AND (&#038;&#038;) operator is used with integer or floating point operands inside an if or while statement:
  int x = 2, y = 3, z = 2;
  if ( x == y &#038;&#038; [...]]]></description>
			<content:encoded><![CDATA[<p><b>Applies to:</b><br/>NA<br/><br/> <b>Description:</b><br/>A boolean operator is being used with an operand that does not equal to true or false<br/><br/> <b>Cause:</b><br/>The AND (&#038;&#038;) operator is used with integer or floating point operands inside an if or while statement:<br />
  int x = 2, y = 3, z = 2;<br />
  if ( x == y &#038;&#038; z )<br />
    System.out.println( &#8220;Errorl&#8221; );<br />
<br/><br/></p>
]]></content:encoded>
			<wfw:commentRss>http://iderror.com/errors/java/java-compiler/operator-cannot-be-applied-to-boolean/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>operator &#124;&#124; cannot be applied to boolean</title>
		<link>http://iderror.com/errors/java/java-compiler/operator-cannot-be-applied-to-boolean/</link>
		<comments>http://iderror.com/errors/java/java-compiler/operator-cannot-be-applied-to-boolean/#comments</comments>
		<pubDate>Mon, 09 Mar 2009 14:20:06 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[JAVA-Compiler]]></category>

		<guid isPermaLink="false">http://localhost/idError/?p=557</guid>
		<description><![CDATA[Applies to:NA Description:A boolean operator is being used with an operand that does not equal to true or false Cause:The OR (&#124;&#124;) operator is used with integer or floating point operands inside an if or while statement:
  int x = 2, y = 3, z = 2;
  if ( x == y &#124;&#124; [...]]]></description>
			<content:encoded><![CDATA[<p><b>Applies to:</b><br/>NA<br/><br/> <b>Description:</b><br/>A boolean operator is being used with an operand that does not equal to true or false<br/><br/> <b>Cause:</b><br/>The OR (||) operator is used with integer or floating point operands inside an if or while statement:<br />
  int x = 2, y = 3, z = 2;<br />
  if ( x == y || z )<br />
    System.out.println( &#8220;Errorl&#8221; );<br />
<br/><br/></p>
]]></content:encoded>
			<wfw:commentRss>http://iderror.com/errors/java/java-compiler/operator-cannot-be-applied-to-boolean/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>AbstractMethodError</title>
		<link>http://iderror.com/errors/java/java-compiler/abstractmethoderror/</link>
		<comments>http://iderror.com/errors/java/java-compiler/abstractmethoderror/#comments</comments>
		<pubDate>Mon, 09 Mar 2009 14:20:05 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[JAVA-Compiler]]></category>

		<guid isPermaLink="false">http://localhost/idError/?p=496</guid>
		<description><![CDATA[Applies to:Java 2 Platform SE v1.4.2 Description:A compiler error that is thrown when an application tries to call an abstract method. Cause:a. Missing bridge for final method
b. Classes are compiled without abstract methods
]]></description>
			<content:encoded><![CDATA[<p><b>Applies to:</b><br/>Java 2 Platform SE v1.4.2<br/><br/> <b>Description:</b><br/>A compiler error that is thrown when an application tries to call an abstract method.<br/><br/> <b>Cause:</b><br/>a. Missing bridge for final method<br />
b. Classes are compiled without abstract methods<br/><br/></p>
]]></content:encoded>
			<wfw:commentRss>http://iderror.com/errors/java/java-compiler/abstractmethoderror/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>
