<?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/">
	<channel>
		<title><![CDATA[Java coding community - All Forums]]></title>
		<link>http://www.javacodez.com/forums/</link>
		<description><![CDATA[Java coding community - http://www.javacodez.com/forums]]></description>
		<pubDate>Tue, 06 Jan 2009 19:47:10 -0600</pubDate>
		<generator>MyBB</generator>
		<item>
			<title><![CDATA[SCJP question 2]]></title>
			<link>http://www.javacodez.com/forums/showthread.php?tid=71</link>
			<pubDate>Tue, 21 Oct 2008 09:13:20 -0500</pubDate>
			<dc:creator>priyaguptan</dc:creator>
			<guid isPermaLink="false">http://www.javacodez.com/forums/showthread.php?tid=71</guid>
			<description><![CDATA[Given:<br />
<br />
public class Test{<br />
public enum Dogs{collie,harrier,shepherd};<br />
public static void main(String [&#93; args){<br />
Dogs myDog=Dogs.shepherd;<br />
switch(myDog)<br />
{<br />
case collie:<br />
System.out.print("collie");<br />
case default:<br />
System.out.print("retreiver");<br />
case harrier:<br />
System.out.print("harrier");<br />
}<br />
}<br />
}<br />
<br />
what would be the output of this program? Would it print retreiver harrier or would it give a compilation error?]]></description>
			<content:encoded><![CDATA[Given:<br />
<br />
public class Test{<br />
public enum Dogs{collie,harrier,shepherd};<br />
public static void main(String [] args){<br />
Dogs myDog=Dogs.shepherd;<br />
switch(myDog)<br />
{<br />
case collie:<br />
System.out.print("collie");<br />
case default:<br />
System.out.print("retreiver");<br />
case harrier:<br />
System.out.print("harrier");<br />
}<br />
}<br />
}<br />
<br />
what would be the output of this program? Would it print retreiver harrier or would it give a compilation error?]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[SCJP practice question]]></title>
			<link>http://www.javacodez.com/forums/showthread.php?tid=70</link>
			<pubDate>Tue, 21 Oct 2008 07:08:52 -0500</pubDate>
			<dc:creator>priyaguptan</dc:creator>
			<guid isPermaLink="false">http://www.javacodez.com/forums/showthread.php?tid=70</guid>
			<description><![CDATA[I have the following code:<br />
<br />
public interface A{<br />
public void doSomething(String string);<br />
}<br />
public class AImpl implements A{<br />
public void doSomething(String msg){}<br />
}<br />
public class B{<br />
public A doit(){<br />
//some code<br />
}<br />
public String execute()<br />
{<br />
//more code<br />
}<br />
}<br />
public class C extends B{<br />
public AImpl doit(){<br />
//more code<br />
}<br />
public Object execute()<br />
{<br />
//more code<br />
}<br />
}<br />
<br />
Why does class C not compile here?]]></description>
			<content:encoded><![CDATA[I have the following code:<br />
<br />
public interface A{<br />
public void doSomething(String string);<br />
}<br />
public class AImpl implements A{<br />
public void doSomething(String msg){}<br />
}<br />
public class B{<br />
public A doit(){<br />
//some code<br />
}<br />
public String execute()<br />
{<br />
//more code<br />
}<br />
}<br />
public class C extends B{<br />
public AImpl doit(){<br />
//more code<br />
}<br />
public Object execute()<br />
{<br />
//more code<br />
}<br />
}<br />
<br />
Why does class C not compile here?]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Clarification in Jsp]]></title>
			<link>http://www.javacodez.com/forums/showthread.php?tid=69</link>
			<pubDate>Fri, 05 Sep 2008 06:22:46 -0500</pubDate>
			<dc:creator>priyaguptan</dc:creator>
			<guid isPermaLink="false">http://www.javacodez.com/forums/showthread.php?tid=69</guid>
			<description><![CDATA[I have a jsp file say a.jsp . When i click on a button on this jsp file it pops up another jsp say b.jsp which has a textbox and a save button. Now when i enter some details in the text box and click on save , i want the info from the text box in b.jsp to be passed on to a.jsp and then the form in a.jsp needs to be submitted for further action. Kindly let me know how this can be done if possible with an example.]]></description>
			<content:encoded><![CDATA[I have a jsp file say a.jsp . When i click on a button on this jsp file it pops up another jsp say b.jsp which has a textbox and a save button. Now when i enter some details in the text box and click on save , i want the info from the text box in b.jsp to be passed on to a.jsp and then the form in a.jsp needs to be submitted for further action. Kindly let me know how this can be done if possible with an example.]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Get context path using JSTL]]></title>
			<link>http://www.javacodez.com/forums/showthread.php?tid=68</link>
			<pubDate>Sun, 24 Aug 2008 01:38:56 -0500</pubDate>
			<dc:creator>reena</dc:creator>
			<guid isPermaLink="false">http://www.javacodez.com/forums/showthread.php?tid=68</guid>
			<description><![CDATA[How can I access the context path using JSTL. I need the equivalant of <br />
<br />
&lt;%= application.getContextPath() %&gt; using JSTL]]></description>
			<content:encoded><![CDATA[How can I access the context path using JSTL. I need the equivalant of <br />
<br />
&lt;%= application.getContextPath() %&gt; using JSTL]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[java.lang.RuntimeException: Error parsing XPath '/sqlMapConfig/sqlMap'.  with IBATIS]]></title>
			<link>http://www.javacodez.com/forums/showthread.php?tid=67</link>
			<pubDate>Sun, 24 Aug 2008 00:01:17 -0500</pubDate>
			<dc:creator>sanjay</dc:creator>
			<guid isPermaLink="false">http://www.javacodez.com/forums/showthread.php?tid=67</guid>
			<description><![CDATA[I am getting a runtime error message with my IBATIS code. <br />
<br />
java.lang.RuntimeException: Error occurred.  Cause: com.ibatis.common.xml.NodeletException: Error parsing XML.  Cause: java.lang.RuntimeException: Error parsing XPath '/sqlMapConfig/sqlMap'.  Cause: com.ibatis.common.xml.NodeletException: Error parsing XML.  Cause: java.lang.RuntimeException: Error parsing XPath '/sqlMap/select'.  Cause: com.ibatis.sqlmap.client.SqlMapException: Error.  Could not set result class.  Cause: java.lang.ClassNotFoundException: TestResult<br />
	at com.ibatis.sqlmap.engine.builder.xml.SqlMapConfigParser.parse(SqlMapConfigParser.java:89)<br />
	at com.ibatis.sqlmap.client.SqlMapClientBuilder.buildSqlMapClient(SqlMapClientBuilder.java:63)<br />
	at org.apache.jsp.test_jsp._jspService(test_jsp.java from :79)<br />
	at org.apache.jasper.runtime.HttpJspBase.service(HttpJspBase.java:93)<br />
	at javax.servlet.http.HttpServlet.service(HttpServlet.java:831)<br />
	at org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:373)<br />
	at org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:470)<br />
<br />
<br />
How do I fix this issue?]]></description>
			<content:encoded><![CDATA[I am getting a runtime error message with my IBATIS code. <br />
<br />
java.lang.RuntimeException: Error occurred.  Cause: com.ibatis.common.xml.NodeletException: Error parsing XML.  Cause: java.lang.RuntimeException: Error parsing XPath '/sqlMapConfig/sqlMap'.  Cause: com.ibatis.common.xml.NodeletException: Error parsing XML.  Cause: java.lang.RuntimeException: Error parsing XPath '/sqlMap/select'.  Cause: com.ibatis.sqlmap.client.SqlMapException: Error.  Could not set result class.  Cause: java.lang.ClassNotFoundException: TestResult<br />
	at com.ibatis.sqlmap.engine.builder.xml.SqlMapConfigParser.parse(SqlMapConfigParser.java:89)<br />
	at com.ibatis.sqlmap.client.SqlMapClientBuilder.buildSqlMapClient(SqlMapClientBuilder.java:63)<br />
	at org.apache.jsp.test_jsp._jspService(test_jsp.java from :79)<br />
	at org.apache.jasper.runtime.HttpJspBase.service(HttpJspBase.java:93)<br />
	at javax.servlet.http.HttpServlet.service(HttpServlet.java:831)<br />
	at org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:373)<br />
	at org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:470)<br />
<br />
<br />
How do I fix this issue?]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[JSTL String comparison]]></title>
			<link>http://www.javacodez.com/forums/showthread.php?tid=66</link>
			<pubDate>Sat, 23 Aug 2008 10:08:09 -0500</pubDate>
			<dc:creator>reena</dc:creator>
			<guid isPermaLink="false">http://www.javacodez.com/forums/showthread.php?tid=66</guid>
			<description><![CDATA[How can I compare two strings using JSTL?]]></description>
			<content:encoded><![CDATA[How can I compare two strings using JSTL?]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Checking variable existance using JSTL]]></title>
			<link>http://www.javacodez.com/forums/showthread.php?tid=65</link>
			<pubDate>Sat, 23 Aug 2008 08:34:44 -0500</pubDate>
			<dc:creator>reena</dc:creator>
			<guid isPermaLink="false">http://www.javacodez.com/forums/showthread.php?tid=65</guid>
			<description><![CDATA[How can I check a variable's existance using JSTL? I am expecting an attribute in my session and if that attribute exist I need to display a block of code. How can I do that?]]></description>
			<content:encoded><![CDATA[How can I check a variable's existance using JSTL? I am expecting an attribute in my session and if that attribute exist I need to display a block of code. How can I do that?]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Reading session attributes using JSTL]]></title>
			<link>http://www.javacodez.com/forums/showthread.php?tid=64</link>
			<pubDate>Sat, 23 Aug 2008 08:28:08 -0500</pubDate>
			<dc:creator>reena</dc:creator>
			<guid isPermaLink="false">http://www.javacodez.com/forums/showthread.php?tid=64</guid>
			<description><![CDATA[How can I read a session attribute using JSTL?]]></description>
			<content:encoded><![CDATA[How can I read a session attribute using JSTL?]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[JSPG0124E: Custom tag attribute test cannot be runtime expression]]></title>
			<link>http://www.javacodez.com/forums/showthread.php?tid=63</link>
			<pubDate>Tue, 19 Aug 2008 10:27:02 -0500</pubDate>
			<dc:creator>reena</dc:creator>
			<guid isPermaLink="false">http://www.javacodez.com/forums/showthread.php?tid=63</guid>
			<description><![CDATA[I am getting an error message with my JSTL code. The stack trace is<br />
<br />
HTTP Error Code:   500<br />
<br />
 <br />
Error Message:JSPG0227E: Exception caught while translating /registration.jsp:  /registration.jsp(192,85) --&gt; JSPG0124E: Custom tag attribute value cannot be runtime expression. value: "[&#36;{param.txtFirstName}&#93;"<br />
 <br />
Root Cause:com.ibm.ws.jsp.translator.JspTranslationException: JSPG0227E: Exception caught while translating /registration.jsp:  /registration.jsp(192,85) --&gt; JSPG0124E: Custom tag attribute value cannot be runtime expression. value: "[&#36;{param.txtFirstName}&#93;"	at com.ibm.ws.jsp.translator.visitor.validator.ValidateVisitor.validateCustomTagAttributeValues(ValidateVisitor.java:1442)	at com.ibm.ws.jsp.translator.visitor.validator.ValidateVisitor.visitCustomTagStart(ValidateVisitor.java:277)	at com.ibm.ws.jsp.translator.visitor.JspVisitor.processJspElement(JspVisitor.java:253)	at com.ibm.ws.jsp.translator.visitor.JspVisitor.processChildren(JspVisitor.java:286)	at <br />
<br />
Whats wrong?]]></description>
			<content:encoded><![CDATA[I am getting an error message with my JSTL code. The stack trace is<br />
<br />
HTTP Error Code:   500<br />
<br />
 <br />
Error Message:JSPG0227E: Exception caught while translating /registration.jsp:  /registration.jsp(192,85) --&gt; JSPG0124E: Custom tag attribute value cannot be runtime expression. value: "[&#36;{param.txtFirstName}]"<br />
 <br />
Root Cause:com.ibm.ws.jsp.translator.JspTranslationException: JSPG0227E: Exception caught while translating /registration.jsp:  /registration.jsp(192,85) --&gt; JSPG0124E: Custom tag attribute value cannot be runtime expression. value: "[&#36;{param.txtFirstName}]"	at com.ibm.ws.jsp.translator.visitor.validator.ValidateVisitor.validateCustomTagAttributeValues(ValidateVisitor.java:1442)	at com.ibm.ws.jsp.translator.visitor.validator.ValidateVisitor.visitCustomTagStart(ValidateVisitor.java:277)	at com.ibm.ws.jsp.translator.visitor.JspVisitor.processJspElement(JspVisitor.java:253)	at com.ibm.ws.jsp.translator.visitor.JspVisitor.processChildren(JspVisitor.java:286)	at <br />
<br />
Whats wrong?]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[NetBeans IDE 6.5 Beta Now Available]]></title>
			<link>http://www.javacodez.com/forums/showthread.php?tid=62</link>
			<pubDate>Mon, 18 Aug 2008 06:21:18 -0500</pubDate>
			<dc:creator>albinjoseph</dc:creator>
			<guid isPermaLink="false">http://www.javacodez.com/forums/showthread.php?tid=62</guid>
			<description><![CDATA[NetBeans IDE 6.5 Beta Now Available for download. This version introduces several new features, including a robust IDE for PHP, JavaScript™ debugging for Firefox and IE, and support for Groovy and Grails. This release also includes a number of enhancements for Java™, Ruby and Rails, and C/C++ development. Java feature highlights include: built-in support for Hibernate, Eclipse project import, and compile on save.<br />
<br />
NetBeans IDE 6.5 Beta also includes all the great features introduced in NetBeans 6.1 like the powerful and intuitive JavaScript Editor, support for Spring Framework, ClearCase (via Update Center), and RESTful Web Services.<br />
<br />
Read the complete release information here. <a href="http://www.netbeans.org/community/releases/65/index.html" target="_blank">http://www.netbeans.org/community/releas...index.html</a><br />
<br />
For download use <a href="http://dlc.sun.com.edgesuite.net/netbeans/6.5/beta/index.html" target="_blank">http://dlc.sun.com.edgesuite.net/netbean...index.html</a>]]></description>
			<content:encoded><![CDATA[NetBeans IDE 6.5 Beta Now Available for download. This version introduces several new features, including a robust IDE for PHP, JavaScript™ debugging for Firefox and IE, and support for Groovy and Grails. This release also includes a number of enhancements for Java™, Ruby and Rails, and C/C++ development. Java feature highlights include: built-in support for Hibernate, Eclipse project import, and compile on save.<br />
<br />
NetBeans IDE 6.5 Beta also includes all the great features introduced in NetBeans 6.1 like the powerful and intuitive JavaScript Editor, support for Spring Framework, ClearCase (via Update Center), and RESTful Web Services.<br />
<br />
Read the complete release information here. <a href="http://www.netbeans.org/community/releases/65/index.html" target="_blank">http://www.netbeans.org/community/releas...index.html</a><br />
<br />
For download use <a href="http://dlc.sun.com.edgesuite.net/netbeans/6.5/beta/index.html" target="_blank">http://dlc.sun.com.edgesuite.net/netbean...index.html</a>]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Delete the last character from a string]]></title>
			<link>http://www.javacodez.com/forums/showthread.php?tid=61</link>
			<pubDate>Mon, 18 Aug 2008 06:08:08 -0500</pubDate>
			<dc:creator>moonlight</dc:creator>
			<guid isPermaLink="false">http://www.javacodez.com/forums/showthread.php?tid=61</guid>
			<description><![CDATA[How do I remove the last character from a string? Assume that I have a String named str<br />
<br />
str="Hello World";<br />
<br />
I want to remove the last 'd' from str.]]></description>
			<content:encoded><![CDATA[How do I remove the last character from a string? Assume that I have a String named str<br />
<br />
str="Hello World";<br />
<br />
I want to remove the last 'd' from str.]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Java 6 documentation]]></title>
			<link>http://www.javacodez.com/forums/showthread.php?tid=60</link>
			<pubDate>Mon, 18 Aug 2008 06:04:36 -0500</pubDate>
			<dc:creator>moonlight</dc:creator>
			<guid isPermaLink="false">http://www.javacodez.com/forums/showthread.php?tid=60</guid>
			<description><![CDATA[Where can I download the documentation for Java 1.6?]]></description>
			<content:encoded><![CDATA[Where can I download the documentation for Java 1.6?]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Exception Handling]]></title>
			<link>http://www.javacodez.com/forums/showthread.php?tid=59</link>
			<pubDate>Wed, 13 Aug 2008 03:20:25 -0500</pubDate>
			<dc:creator>abhinav</dc:creator>
			<guid isPermaLink="false">http://www.javacodez.com/forums/showthread.php?tid=59</guid>
			<description><![CDATA[Hi Everyone...<br />
<br />
I am confused with one example of try..catch..finally..<br />
so plz help me out in getting it correctly<br />
<br />
class Test_Exception<br />
{<br />
   static void test() throws IOException<br />
   {<br />
       try <br />
       {<br />
          throw new IOException();<br />
       }<br />
       finally<br />
       {<br />
            System.out.println("In Finally");///line 1<br />
       }<br />
   }<br />
    public static void main(String [&#93;arg)<br />
    {<br />
        try<br />
        {<br />
             test();<br />
         }catch(Exception e)<br />
         {<br />
               System.out.println("In Catch");<br />
         }<br />
         System.out.println("End Main");<br />
   }<br />
}<br />
<br />
the output is <br />
In Finally<br />
In Catch<br />
End Main<br />
<br />
why after finally this catch block executed??<br />
<br />
and if line is replaced by catch block like this<br />
catch(IOException ioe)<br />
{<br />
  System.out.println("In Catch_test");<br />
}<br />
then what o/p is different now??<br />
 Thanks in Advance.]]></description>
			<content:encoded><![CDATA[Hi Everyone...<br />
<br />
I am confused with one example of try..catch..finally..<br />
so plz help me out in getting it correctly<br />
<br />
class Test_Exception<br />
{<br />
   static void test() throws IOException<br />
   {<br />
       try <br />
       {<br />
          throw new IOException();<br />
       }<br />
       finally<br />
       {<br />
            System.out.println("In Finally");///line 1<br />
       }<br />
   }<br />
    public static void main(String []arg)<br />
    {<br />
        try<br />
        {<br />
             test();<br />
         }catch(Exception e)<br />
         {<br />
               System.out.println("In Catch");<br />
         }<br />
         System.out.println("End Main");<br />
   }<br />
}<br />
<br />
the output is <br />
In Finally<br />
In Catch<br />
End Main<br />
<br />
why after finally this catch block executed??<br />
<br />
and if line is replaced by catch block like this<br />
catch(IOException ioe)<br />
{<br />
  System.out.println("In Catch_test");<br />
}<br />
then what o/p is different now??<br />
 Thanks in Advance.]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[DevWeek India 2008- No Marketing Bushwah, Only Real Information]]></title>
			<link>http://www.javacodez.com/forums/showthread.php?tid=58</link>
			<pubDate>Fri, 01 Aug 2008 06:22:09 -0500</pubDate>
			<dc:creator>ashwini</dc:creator>
			<guid isPermaLink="false">http://www.javacodez.com/forums/showthread.php?tid=58</guid>
			<description><![CDATA[When was the last time you attended a conference or an event where technology used in our day-to-day work was given the first priority? Well, if your answer is ‘Not in Recent Times’ then DevWeek India 2008 is the right place for you to gather cutting-edge information on technology that is needed for you daily work. Revolution <br />
<br />
After organizing successful conferences like JAX India 2007, JAX India 2008 and SOA India 2007, S&amp;S Media (India) has taken charge of yet another comprehensive in-depth event on Java, ASP.NET and Dynamic Languages, better known as DevWeek India 2008. <br />
<br />
The panel of speakers at DevWeek India 2008, which includes Neal Ford, Ted Neward and Michael Li, take you through a broad range of half-day and full-day tutorial specially designed for your needs giving you the unique opportunity to delve into several technologies such as AJAX, .NET, Ruby and Rails, Agile, SQL Server and more. These vendor-neutral speakers make sure that there is no marketing bushwah but only real and relevant information.<br />
<br />
DevWeek India 2008 gives you a rare chance to meet your peers in a productive and social environment and get passionate about Software programming. By the end of DevWeek India 2008, you will learn how to increase your productivity dramatically and save cost, and how to enhance the quality of your software applications.<br />
<br />
DevWeek India 2008 is scheduled to get underway on the 25th of August till the 28th of August 2008 at NIMHANS Auditorium, Bangalore, India.<br />
<br />
Who should attend an event like this? <br />
Well, software developing is all about passion and we at S&amp;S Media (India) offer you the passion for developing back! Starting from developers to software architects, project managers, project leaders, software testers, database administrators and web developers, everyone has something to learn from DevWeek India 2008.<br />
<br />
With so much to offer in DevWeek India 2008, you surely can’t ask for more!<br />
<br />
For more information please log on to:<br />
<a href="http://www.devweek.in" target="_blank">http://www.devweek.in</a>]]></description>
			<content:encoded><![CDATA[When was the last time you attended a conference or an event where technology used in our day-to-day work was given the first priority? Well, if your answer is ‘Not in Recent Times’ then DevWeek India 2008 is the right place for you to gather cutting-edge information on technology that is needed for you daily work. Revolution <br />
<br />
After organizing successful conferences like JAX India 2007, JAX India 2008 and SOA India 2007, S&amp;S Media (India) has taken charge of yet another comprehensive in-depth event on Java, ASP.NET and Dynamic Languages, better known as DevWeek India 2008. <br />
<br />
The panel of speakers at DevWeek India 2008, which includes Neal Ford, Ted Neward and Michael Li, take you through a broad range of half-day and full-day tutorial specially designed for your needs giving you the unique opportunity to delve into several technologies such as AJAX, .NET, Ruby and Rails, Agile, SQL Server and more. These vendor-neutral speakers make sure that there is no marketing bushwah but only real and relevant information.<br />
<br />
DevWeek India 2008 gives you a rare chance to meet your peers in a productive and social environment and get passionate about Software programming. By the end of DevWeek India 2008, you will learn how to increase your productivity dramatically and save cost, and how to enhance the quality of your software applications.<br />
<br />
DevWeek India 2008 is scheduled to get underway on the 25th of August till the 28th of August 2008 at NIMHANS Auditorium, Bangalore, India.<br />
<br />
Who should attend an event like this? <br />
Well, software developing is all about passion and we at S&amp;S Media (India) offer you the passion for developing back! Starting from developers to software architects, project managers, project leaders, software testers, database administrators and web developers, everyone has something to learn from DevWeek India 2008.<br />
<br />
With so much to offer in DevWeek India 2008, you surely can’t ask for more!<br />
<br />
For more information please log on to:<br />
<a href="http://www.devweek.in" target="_blank">http://www.devweek.in</a>]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[How to convert a String to date]]></title>
			<link>http://www.javacodez.com/forums/showthread.php?tid=56</link>
			<pubDate>Thu, 10 Jul 2008 04:55:14 -0500</pubDate>
			<dc:creator>moonlight</dc:creator>
			<guid isPermaLink="false">http://www.javacodez.com/forums/showthread.php?tid=56</guid>
			<description><![CDATA[How do I convert a String to date?]]></description>
			<content:encoded><![CDATA[How do I convert a String to date?]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[inner class in an interface]]></title>
			<link>http://www.javacodez.com/forums/showthread.php?tid=55</link>
			<pubDate>Tue, 01 Jul 2008 02:29:30 -0500</pubDate>
			<dc:creator>priyaguptan</dc:creator>
			<guid isPermaLink="false">http://www.javacodez.com/forums/showthread.php?tid=55</guid>
			<description><![CDATA[Is it possible to have a class within an interface?<br />
 <br />
If it is possible , then is it possible to create an object of that class?]]></description>
			<content:encoded><![CDATA[Is it possible to have a class within an interface?<br />
 <br />
If it is possible , then is it possible to create an object of that class?]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Map object]]></title>
			<link>http://www.javacodez.com/forums/showthread.php?tid=54</link>
			<pubDate>Thu, 26 Jun 2008 22:13:24 -0500</pubDate>
			<dc:creator>priyaguptan</dc:creator>
			<guid isPermaLink="false">http://www.javacodez.com/forums/showthread.php?tid=54</guid>
			<description><![CDATA[I learnt that Map is an interface that maps unique keys to values. A key is an object that we use to retrieve a value at a later date. Give a key and a value, we can store the value in a Map object..Now my confusion is if Map is an Interface how come it can be instantiated i.e.,how can we have Map as an object. Kindly clarify me.]]></description>
			<content:encoded><![CDATA[I learnt that Map is an interface that maps unique keys to values. A key is an object that we use to retrieve a value at a later date. Give a key and a value, we can store the value in a Map object..Now my confusion is if Map is an Interface how come it can be instantiated i.e.,how can we have Map as an object. Kindly clarify me.]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Collections and Map interface]]></title>
			<link>http://www.javacodez.com/forums/showthread.php?tid=53</link>
			<pubDate>Thu, 26 Jun 2008 22:07:16 -0500</pubDate>
			<dc:creator>priyaguptan</dc:creator>
			<guid isPermaLink="false">http://www.javacodez.com/forums/showthread.php?tid=53</guid>
			<description><![CDATA[What are Collections and what is a Map interface? Can u pls explain with an example.]]></description>
			<content:encoded><![CDATA[What are Collections and what is a Map interface? Can u pls explain with an example.]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Clarification with interfaces.]]></title>
			<link>http://www.javacodez.com/forums/showthread.php?tid=52</link>
			<pubDate>Wed, 25 Jun 2008 05:27:26 -0500</pubDate>
			<dc:creator>priyaguptan</dc:creator>
			<guid isPermaLink="false">http://www.javacodez.com/forums/showthread.php?tid=52</guid>
			<description><![CDATA[Hi,<br />
<br />
Suppose i have a prog like this:<br />
<br />
interface Content<br />
{<br />
 int i=9;<br />
 void publish();<br />
}<br />
class Article implements Content<br />
{<br />
void publish(){<br />
/*Some code*/<br />
}<br />
}<br />
class Blogs implements Content<br />
{<br />
void publish()<br />
{<br />
/* Some code*/<br />
}<br />
.<br />
.<br />
.<br />
.<br />
.<br />
.<br />
.<br />
<br />
now if there are n number of classes which implement the interface Content and among these classes i want the implementation of publish() method only in n/2 number of classes then it is not possible to declare all the rest of the n/2 classes as abstract as the number of classes is huge but at the same time i want to make use of 'i' also...what is the solution for this?]]></description>
			<content:encoded><![CDATA[Hi,<br />
<br />
Suppose i have a prog like this:<br />
<br />
interface Content<br />
{<br />
 int i=9;<br />
 void publish();<br />
}<br />
class Article implements Content<br />
{<br />
void publish(){<br />
/*Some code*/<br />
}<br />
}<br />
class Blogs implements Content<br />
{<br />
void publish()<br />
{<br />
/* Some code*/<br />
}<br />
.<br />
.<br />
.<br />
.<br />
.<br />
.<br />
.<br />
<br />
now if there are n number of classes which implement the interface Content and among these classes i want the implementation of publish() method only in n/2 number of classes then it is not possible to declare all the rest of the n/2 classes as abstract as the number of classes is huge but at the same time i want to make use of 'i' also...what is the solution for this?]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Store multiple objects in a single array]]></title>
			<link>http://www.javacodez.com/forums/showthread.php?tid=51</link>
			<pubDate>Wed, 25 Jun 2008 03:13:44 -0500</pubDate>
			<dc:creator>priyaguptan</dc:creator>
			<guid isPermaLink="false">http://www.javacodez.com/forums/showthread.php?tid=51</guid>
			<description><![CDATA[Pls let me know how I can store multiple objects in a single array. If possible kindly give me a code snippet to show how it is done.]]></description>
			<content:encoded><![CDATA[Pls let me know how I can store multiple objects in a single array. If possible kindly give me a code snippet to show how it is done.]]></content:encoded>
		</item>
	</channel>
</rss>