Tagged Questions

157
votes
5answers
39k 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 ...
15
votes
10answers
762 views

Use of Java [Interfaces / Abstract classes]

Lately i decided to take a look at Java so i am still pretty new to it and also to the approach of OO programming, so i wanted to get some things straight before learning more, (i guess it's never to ...
7
votes
7answers
118 views

Why is constructor of super class invoked when we declare the object of sub class? (Java)

Consider this code: class Test { Test() { System.out.println("In constructor of Superclass"); } int adds(int n1, int n2) { return(n1+n2); } void print(int sum) { ...
7
votes
3answers
3k views

Java Web Services/JAXB - Abstract superclass

I have a package with JAXB annotated classes with an abstract superclass. I want to use this superclass in web service interface, so I can pass any of subclasses as a parameter. When I do it, an ...
5
votes
0answers
137 views

Do Struts2 Results annotations override or add to superclass defined values?

The following example: I have a superclass and subclass for a struts action. The superclass defines @Results, and the subclass needs to define additional specific @Result entries. For example: ...
5
votes
3answers
344 views

java when do you need to explicitly call a superclass constructor

So say I have a subclass that extends a superclass. In what scenarios do I need to explicitly type super() to get the superclass constructor to run? I'm looking at an example in a book about ...
5
votes
5answers
1k views

Java: Superclass to construct a subclass on certain conditions, possible?

I have this condition public class A { public action() { System.out.println("Action done in A"); } } public class B extends A { public action() { ...
4
votes
4answers
418 views

Why can't the super constructor be invoked from an enum constructor?

public enum A { A(1); private A(int i){ } private A(){ super(); // compile - error // Cannot invoke super constructor from enum constructor A() } } ...
3
votes
2answers
47 views

Determining the superclass of a class while the class is in the form of a byte array?

I have an array of bytes representing the bytes of a class file. I am trying to obtain the superclass of the class that is represented by the byte array. Currently, I am using reflection of the ...
3
votes
3answers
197 views

Java best practices: Put/Get SubClass objects into HashMap that expects SuperClass objects

Let's say I instantiate a HashMap with SuperClass as value-type. I then add SubClass objects as values to the Map. When I retrieve those values from the Map, they are returned as objects of type ...
3
votes
5answers
91 views

How to call both super(…) and this(…) in case of overloaded constructors?

I've never needed to do this before but since both have to be the 'first' line in the constructor how should one tackle it? What's the best refactoring for a situation like this? Here's a sample: ...
3
votes
5answers
156 views

How to avoid excessive code duplication when using enums in Java

I am refactoring some legacy code and have come across a problem which I'm sure has a elegant solution - but I can't quite get there. Initially there were a load of classes which extended an abstract ...
3
votes
2answers
1k views

method must call super() error in Netbeans

Recently I've made a Netbeans project and I am using SVN along with it. I am seeing duplicate class error, and in the console it says java.lang.VerifyError: (class: ...
3
votes
4answers
2k views

How to call a superclass method using Java reflection

I have two classes. public class A { public Object method() {...} } public class B extends A { @Override public Object method() {...} } I have an instance of B. How do I call ...
3
votes
2answers
425 views

In Java, to use the “super” keyword, do I have to import the target class?

When, in a constructor, we use the super keyword, do we have to import the class the super refers to (when super doesn't refer to Object)? class A extends ... { A() { super(); // do we ...
3
votes
2answers
211 views

Super constructor in java

Please explain public class Contact { private String contactId; private String firstName; private String lastName; private String email; private String phoneNumber; public ...
3
votes
7answers
1k views

Getting the name of a sub-class from within a super-class

Let's say I have a base class named Entity. In that class, I have a static method to retrieve the class name: class Entity { public static String getClass() { return ...
2
votes
3answers
68 views

Java set super instance of instance

I might just be unable to google for the right words, but I can't find an answer to the following question. Is it possible to explicitly set the superclass of a new class instance. E.g. I have a ...
2
votes
1answer
46 views

JEE persistence. Nested @PostLoad. PostLoad callback method in supercalss

What should happen, if both the entity class and its superclass implements methods annotated with javax.persistence.PostLoad? Which method must be called and which as first? Does it dependent on the ...
2
votes
8answers
94 views

Java, is it possible to 'convert' object from subclass to object from superclass

I have two classes Student and Tutor. Tutor is basically a student (Tutor extends Student) who has facultyID. Once his contract is complete, he returns to being just a student. So can I somehow ...
2
votes
4answers
129 views

Java: Force subclasses to override methods of the Superclass

How can I write a method and force the subclasses to override this method. In Eclipse it should show in the Quick-Fix Dialog: "Add unimplemented methods". Thanks
2
votes
3answers
106 views

List<A> refering to a List<subclass-of-A>

If I have a Class A that contain a List of children with class A like public Class A { protected List<A> children = new ArrayList<A>(); ... } is it then possible in a subclass B ...
2
votes
1answer
127 views

Java workaround for subclass forced to call super() in constructor?

I am editing a program that uses a RandomAccessFile object, and I want to come up with my own RandomAccessFile class that uses a different source for the data other than a file object (it's an Amazon ...
2
votes
8answers
98 views

Something weird is happening to the Person

In the following java code public class Person { int age = 18; } class Student extends Person { public Student() { this.age = 22; } public static void main(String[] args) ...
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
3answers
225 views

Java extends beginner question

i have a java beginner question: Parent.print() prints "hallo" in the console, but also Child.print() prints "hallo". I thought it has to print "child". How can i solve this? public class Parent { ...
2
votes
2answers
150 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 ...
2
votes
4answers
441 views

Java: How write a cast that specifies both a superclass and an interface?

I have something like this going on in my Java program: void f(Object o) { g(o); } <T extends MySuperClass & MyInterface> void g(T x) { ...; } How can I cast o so that this ...
1
vote
5answers
51 views

Casting an object of a superclass into an object of a subclass creates a new object?

Suppose I have a superclass Item and a subclass MovingItem. If I create an array of items and then try to cast one of the already created items into a MovingItem and store it in to a vector, does it ...
1
vote
6answers
65 views

super of sub function

I have a function in my superclass (Speler) that is called kiesKaart: public Kaart kiesKaart(int spelerIndex){...} In my subclass function, I have the same function with an other parameter that ...
1
vote
2answers
129 views

Netbeans Override Annotation

i'm trying to create a new class that inherits from an abstract superclass (contains three abstract methods). The issue is that netbeans gives me a warning : add @override annotation. why should i do ...
1
vote
4answers
132 views

Can I mock a protected superclass method call in Java?

I have stumbled upon a testing problem of mocking a call of protected method from a super class. e.g. : public class A extends B { @Override protected int calculate(int x, int y) { ...
1
vote
1answer
89 views

ANTLR @header, @parser, superClass option and basic file io (Java)

I want to use parser actions with basic file io (Java), e. g. PrintWriter in an ANTLR grammar. Must I use the superClass option or can I use @header? In both cases how can I declare the ...
1
vote
3answers
48 views

Referring to any of the subclasses of a particular superclass in Java

Ok guys, here's a simple question that I couldn't quite manage to figure out on my own. Any help is greatly appreciated! Let's say I have an abstract class Superclass, from which I derived ...
1
vote
4answers
97 views

Un-overiding hashCode

I have the following situation: I have many BSTs, and I want to merge isomorphic subtrees to save space. I am hashing Binary Search Tree nodes into a "unique table" - basically a hash of BST nodes. ...
1
vote
5answers
129 views

Inheriting from two Java classes

I know Java forbids inheriting from multiple classes and allows implementing any number of interfaces. However, while interfaces are good for polymorphism, they cannot contain any actual code that ...
1
vote
2answers
114 views

Confused about Java inheritance

I was told that for a Java subclass it can inherit all members of its superclass. So does this mean even private members? I know it can inherit protected members. Can someone explain this to me. I ...
1
vote
6answers
121 views

Make a subclass out of a existing superclass field

I need to create a sub-class of a existing class, which I know how to do, but I need to be able to create the subclass based off a existing super class without modifying the super class. For ...
1
vote
1answer
88 views

Need a suitable Android pattern

I'm working on an Android application and am faced with a refactoring issue; most of my activities need certain notification abilities, i.e. showing a Toast message. This is handled by a superclass ...
1
vote
3answers
255 views

Smart way to check super-class

public boolean isUserControled(){ return action.getClass().getSuperclass().toString().equals("class logic.UserBehaviour"); } I think this piece of code is pretty self-explanatory. Is ...
1
vote
1answer
38 views

Creating a superclass that incorporates a HyperLinkistener and a MouseAdapter

I have one class called HyperlinkEventMonitor that implements a HyperlinkListener. I want to extend this class so that it handles both hyperlink events and mouseevents. I tried creating a ...
1
vote
4answers
415 views

How do I access the super-super class, in Java? [Mini-example inside]

In the example below, how can I access, from C, the method method() of the class A? class A { public void method() { } } class B extends A{ public void method() { } } class C extends B{ ...
1
vote
1answer
59 views

Adding new methods to superclasses and resulting problems -Likelihood?

Item 16 of Effective Java 2nd edition, favor composition over inheritance says the following "If the superclass acquires a new method in a subsequent release and you have the bad luck to have given ...
1
vote
2answers
234 views

How can I parse parameters in subclass before calling constructor of the superclass?

public Subclass(String[] parameters) throws IllegalArgumentException { super("Rectangle", Double.parseDouble(parameters[0]), Double.parseDouble(parameters[1]), ...
1
vote
6answers
252 views

Cloneable behaviour

Java doc says - The class Object does not itself implement the interface Cloneable, so calling the clone method on an object whose class is Object will result in throwing an exception at ...
1
vote
2answers
1k views

Reflection: cast an object to subclass without use instanceof

I have this simple interface/class: public abstract class Message {} public class Message1 extends Message {} public class Message2 extends Message {} And an utility class: public class Utility ...
1
vote
2answers
292 views

How do you put a subclass method into a superclasses JLabel?

So here's the class and the super class, question to follow: TestDraw: package project3; import java.awt.BorderLayout; import javax.swing.JFrame; import javax.swing.JLabel; public class TestDraw ...
0
votes
4answers
66 views

For Java assignment “x=y”, does a Java compiler requires that x's declared type is the supertype of y's (including the same type)?

Formulated in another way, could you give an example assignment of JAVA, x=y, such that the declared type of "x" is not a supertype of that of "y"? Recall that the declared type is "T" if x is ...
0
votes
6answers
48 views

A class extends a superclass called Object

If a class Puppy inherits Object by default, if I want my Puppy class to extend a superclass Dog, does the Puppy still extends Object at all times? I'm not too sure about this but I think the Puppy ...
0
votes
2answers
77 views

Calling abstract methods in a superclass constructor

I have an abstract method call in my super's constructor. I run into the error "Constructor call must be the first statement in the Constructor." because I need to initialize some state in my ...

1 2