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
Post a Comment