Tagged Questions

157
votes
5answers
40k views

'Must Override a Superclass Method' Errors after importing a project into Eclipse

Anytime I have to re-import my projects into Eclipse (if I reinstalled Eclipse, or changed the location of the projects), almost all of my overridden methods are not formatted correctly, causing the ...
2
votes
5answers
3k views

Java. Implicit super constructor Employee() is undefined. Must explicitly invoke another constructor

Hello I'm new to Java, I'm getting this error in my production worker class. My Production worker constructor says explicitly invoke another constructor. I don't know what to do?. import ...
2
votes
2answers
151 views

Checking programmatically if a .class file extends particular class

I have a problem I've been trying to solve for quite some hours. In an Eclipse plugin, I have an ArrayList that contains the full paths (as strings) of some java .class files. What I'd like to do is ...
1
vote
0answers
47 views

Get super class node/name from compilation unit or ast tree

I have a ast object for a compilation unit. How can I get superclass object from the ast tree? Thanks.
0
votes
0answers
44 views

Connecting each JPanel superclass(include JRadioButtons)

//This is the JFrame that connected with each Superclass javax.swing.JPanel (please take note that I am using Java Eclipse Visual Editor and I have 8 super classes of javax.swing.JPanel) public class ...
0
votes
3answers
44 views

View method default behavior for overriding

I'm learning how to use @override and its pretty awesome, right now I'm trying to find out how to view the methods you override. The API (I'm still new, so I may be wrong here) will tell you the ...
0
votes
1answer
97 views

Simple null reference bug thats killing me (Java)

Alright so I am messing around with some code in java and I am getting a wierd error. I have my class Chaos which has a Window variable FSW, public as well. Now I have another class called Look. Chaos ...