Results 1 to 1 of 1
- 11-16-2008, 06:12 AM #1
Member
- Join Date
- Nov 2008
- Posts
- 1
- Rep Power
- 0
using applet with user-craeted methods
hello
I am trying to write an Pocketcube (like a Rubik's Cube) simulator and I am using an user-created method to draw the net of the cube in an Applet.
I am using this code to create my method:
class Draw extends Applet
{
public void drawpiece(String position, String color, Graphics g)
{
....
}
}
When I try to use that method [ Draw.drawpiece("ftl","rwg") ] I get a compile error:
F:\fun\minicube1.java:36: drawpiece(java.lang.String,java.lang.String,java.a wt.Graphics) in Draw cannot be applied to (java.lang.String,java.lang.String)
Draw.drawpiece("ftl","rwg");
I do not use any extern graphic files so I cant write anything behind the two Strings in my method, but I also cant delete the "Graphics g" when I create my method or I get a comiple error when I use "g.fillRect()" later.
Can anybody help me? I am pretty much stuck at this point and dont see another way to do it.
thank you
Florian
^Last edited by munchflo; 11-16-2008 at 06:16 AM.
Similar Threads
-
Trouble with static methods and boolean equals() methods with classes
By dreamingofgreen in forum New To JavaReplies: 8Last Post: 04-16-2012, 11:00 PM -
How to get the User Name
By Java Tip in forum java.langReplies: 0Last Post: 04-04-2008, 02:43 PM -
Java Security Applet will not load under a specific user.
By MartyF in forum Java AppletsReplies: 0Last Post: 03-31-2008, 04:35 PM -
New User
By TKI5 in forum New To JavaReplies: 0Last Post: 12-13-2007, 01:13 AM -
Applet, To center text and To open I engage in a dialog in an Applet
By Marcus in forum Java AppletsReplies: 4Last Post: 06-08-2007, 06:15 AM


LinkBack URL
About LinkBacks
Reply With Quote
Bookmarks