• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Jeanne Boyarsky
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Rob Spoor
  • Devaka Cooray
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Carey Brown
  • Frits Walraven
  • Tim Moores
Bartenders:
  • Mikalai Zaikin

VectorCanvas

 
Greenhorn
Posts: 5
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator



these are the things the compiler is complaining about

C:\Documents and Settings\ABK\My Documents\PA\VectorCanvas.java:30: cannot find symbol
symbol : class ScorePanel
location: class VectorCanvas
private ScorePanel myScoreC;
^
C:\Documents and Settings\ABK\My Documents\PA\VectorCanvas.java:48: cannot find symbol
symbol : class ScorePanel
location: class VectorCanvas
public VectorCanvas(Label coordinateLabel,ScorePanel myScoreC)
^
C:\Documents and Settings\ABK\My Documents\PA\VectorCanvas.java:247: operator + cannot be applied to ScorePanel.getNumbPoint,int
myScoreC.setNumbPoint(myScoreC.getNumbPoint()+ pointIncrement);
^
3 errors

Tool completed with exit code 1
 
author
Posts: 14112
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Yes, the compiler doesn't find the ScorePanel class, obviously. And your question is...?
 
You’ll find me in my office. I’ll probably be drinking. And reading this tiny ad.
a bit of art, as a gift, the permaculture playing cards
https://gardener-gift.com
reply
    Bookmark Topic Watch Topic
  • New Topic