java - cannot find javax.swing.JPanel -


i'm novice in java coding. downloaded jdk 8 , eclipse java ee ide.

eclipse cannot find jpanel.

the error says jpanel has access restriction.

how fix this?

here program

import java.awt.*; import java.awt.event.*; import javax.swing.*;   public class purcellm26try2 extends jpanel {      public void paintcomponent(graphics g){         super.paintcomponent(g);         this.setbackground(color.white);          g.setcolor(color.white);      }  } 

i can rephrase question if users don't understand. thank you


Comments

Popular posts from this blog

Why can rails not find a route created by a helper? -

javascript - jquery or ashx not working -

opencv - DataType<cv::detail::deriv_type>::depth what is it used for -