Is there a way to typecast String type to JLayeredPane? Following is the code I am using:

private static void build_tables() {  
    String sql="SELECT * FROM pos_tables WHERE pos_company_id='"
        +global_variables.company_id
        +"' AND shop_type='"
        +global_variables.shop_type
        +"'";  
    if(mysql_query.count_mysqls(variables.con.conn, sql)>0){  
        try {  
            ResultSet rs = mysql_query.execute_mysql(variables.con.conn, sql);  
            while (rs.next()) {  
                JLayeredPane JL = (JLayeredPane)rs.getObject("parent_floor");  
                tablesetup.addButton(rs.getString("table_name"),
                    Integer.parseInt(rs.getString("x")),
                    Integer.parseInt(rs.getString("y")), JL);    
            }  
        } catch (SQLException ex) {   
            Logger.getLogger(builder.class.getName()).log(Level.SEVERE, null, ex);  
        }  
    }  
}  

I am getting the following error:

Exception in thread "AWT-EventQueue-0" java.lang.ClassCastException:
java.lang.String cannot be cast to javax.swing.JLayeredPane
link|improve this question

Reformatted code; please revert if incorrect. – trashgod Mar 19 '11 at 3:30
feedback

1 Answer

up vote 0 down vote accepted

enter code hereJLayeredPane JL = (JLayeredPane)rs.getObject("parent_floor");

A database doesn't contain JLayeredPane objects. It contains a String.

What are you trying to do? Why are you using a JLayeredPane?

Just use a JPanel. Then you can create a JLabel using the String returned from the database queary and then you add the label to the panel. Something like:

String text = rs.getObject("parent_floor").toString();
JLabel label = new JLabel( text );
panel.add(label);
link|improve this answer
i am using tabbed pane and inside each tab i dynamically add buttons and labels(inside another layeredpane) Can this be done by just using JPanel ? can i add another Jpanel inside Jpanel ? – Deepak Mar 19 '11 at 2:55
you can nest JPanels arbitrarily deep – MeBigFatGuy Mar 19 '11 at 5:22
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.