Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

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
760 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 ...
14
votes
4answers
199 views

Uninstantiable superclass

So, I'm writing a module for connecting to external account providers (Twitter, Facebook etc) and I have a superclass that is useless on its own, but contains generic methods that need to be invoked ...
14
votes
2answers
999 views

Test whether a Ruby class is a subclass of another class

I would like to test whether a class inherits from another class, but there doesn't seem to exist a method for that. class A end class B < A end B.is_a? A => false B.superclass == A => ...
11
votes
8answers
2k views

Why aren't Python's superclass __init__ methods automatically invoked?

Why did the Python designers decide that subclasses' __init__() methods don't automatically call the __init__() methods of their superclasses, as in some other languages? Is the Pythonic and ...
8
votes
6answers
10k views

Better way to call superclass method in ExtJS

All the ExtJS documentation and examples I have read suggest calling superclass methods like this: MyApp.MyPanel = Ext.extend(Ext.Panel, { initComponent: function() { // do something MyPanel ...
7
votes
7answers
117 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
6answers
536 views

Strange error regarding instance variables & superclass

I've got some code where my classes inherit from a superclass, and everything has been working fine till now. I'm getting an error whenever I try to use any of the superclass variables, saying that ...
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 ...
6
votes
3answers
810 views

General 'map' function for Scala tuples?

I would like to map the elements of a Scala tuple (or triple, ...) using a single function returning type R. The result should be a tuple (or triple, ...) with elements of type R. OK, if the ...
6
votes
3answers
805 views

Why protected superclass member cannot be accessed in a subclass function when passed as an argument?

I get a compile error, which I'm slightly confused about. This is on VS2003. error C2248: 'A::y' : cannot access protected member declared in class 'A' class A { public: A() : x(0), y(0) {} ...
5
votes
2answers
71 views

Javascript Prototype Chaining super class constructor and method calling

I'm a newbie in the JavaScript world, and I came up with this weird problem when i was attempting prototype chaining inheritence. I have 3 classes //class parent function parent(param_1){ ...
5
votes
0answers
134 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
340 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
3answers
254 views

Initialize an object with a superclass' instance

Let's say a have a Superclass and an instance of this class superclassObject. I create a derived ClassA. How can I instantiate (initialize) an object classAObject of the derived class in a such ...
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
1answer
48 views

Interfacing with super and subclass constructors

I have had trouble finding help in the matlab documentation and previous questions about using matlab inheritance and class constructors to make an interface. To make it tidy, within a package. ...
4
votes
1answer
47 views

How to get the list of class that have a common S4 superclass in R

In R, how do I get the list of subclass of a S4 superclass? I found showClass("mySuperClass",complete=FALSE) but it only prints the result. I would like to store it in a vector to use it.
4
votes
4answers
415 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() } } ...
4
votes
11answers
469 views

When to implement an interface and when to extend a superclass?

I've been reading a lot about interfaces and class inheritance in Java, and I know how to do both and I think I have a good feel for both. But it seems that nobody ever really compares the two side by ...
4
votes
2answers
169 views

List all concrete or abstract classes of object

Is it possible in C#, via reflection or some other method, to return a list all superclasses (concrete and abstract, mostly interested in concrete classes) of an object. For example passing in a ...
3
votes
2answers
79 views

python: super()-like proxy object that starts the MRO search at a specified class

According to the docs, super(cls, obj) returns a proxy object that delegates method calls to a parent or sibling class of type cls I understand why super() offers this functionality, but I ...
3
votes
2answers
45 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
1answer
73 views

Get superclasses function in Scala

What would be a short functional way to get the superclasses of a given Class instance in Scala? All I could come up with is this def supers(cl: Class[_]): List[Class[_]] = { cl :: ...
3
votes
2answers
189 views

How to inherit a model from superclass in playframework

I'm trying to understand how does the inheritance work in play! But unsuccessfully yet. So, I have such superclass: @Inheritance(strategy = InheritanceType.TABLE_PER_CLASS) abstract class ...
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
90 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
155 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
2answers
462 views

Can't find interface declaration for my IOS view controller

I'm getting this error: "Cannot find interface declaration for 'BaseViewController', superclass of 'ViewController'. Here's the situation: AppDelegate: Subclass of NSObject In the header file: ...
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
424 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
210 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 ...
3
votes
2answers
440 views

Use super class's address/pointer in initialization list

context 1: class D : public B1, public B2{}; context 2: B2 takes B1 to initialize: B2( B1 * ) //B2's constructor my question is in D's initialization list: D::D() : B1(), B2( ? )... What should ...
3
votes
3answers
401 views

Smalltalk superclass vs metaclass?

I new to OOP, but with a "procedural" background. I'm currently trying to get my head around OOP via GNU Smalltalk and Lovejoy's "Smalltalk: Getting The Message". I'm confused as to the the heck ...
3
votes
6answers
2k views

C# : how do you obtain a class' base class?

In C#, how does one obtain a reference to the base class of a given class? For example, suppose you have a certain class, MyClass, and you want to obtain a reference to MyClass' superclass. I have ...
2
votes
2answers
80 views

How & Why to use SUPER in code?

I work with some advanced JavaScript people and they have used the SUPER keyword in their code. I admit, I don't have a good grasp of how and why one can and would use this. Can someone direct me or ...
2
votes
2answers
54 views

JavaScript inherit object values

is it possible to inherit an Object (reference) value from a class? function A() { this.x = {}; } function B() { this.y = {}; } B.prototype = new A(); //... var b1 = new B(); var b2 = new ...
2
votes
3answers
67 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
2answers
48 views

Core Data convert a superclass instance into a subclass instance?

What's the best way to programmatically convert an NSManagedObject-subclass (User) instance into an instance of its subclass (AccountUser)? Setup AccountUser inherits from User : NSManagedObject ...
2
votes
2answers
72 views

How to determine whether an object is an instance of certain C++ class in GDB

I'm debugging a C++ program with GDB. Sometimes I have a pointer to an object of certain class. The pointer is declared to be of some super class which is extended by several sub-classes. There is no ...
2
votes
1answer
45 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
4answers
105 views

Preventing a class from direct instantiation in Python

I have a super class with a method that calls other methods that are only defined in its sub classes. That's why, when I create an instance of my super class and call its method, it cannot find the ...
2
votes
8answers
92 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
1answer
89 views

Calling parent's __call__ method within class

I'd like to call a parent's call method from inherited class Code looks like this #!/usr/bin/env python class Parent(object): def __call__(self, name): print "hello world, ", name ...
2
votes
4answers
128 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
2answers
131 views

Objective-C: Call Class Method of Subclass

Let's say I have an Objective-C class called MyBaseClass and a subclass called MySubclassedClass. The MyBaseClass has two class methods: + (UIColor *)backgroundColor; + (UIImage *)backgroundImage; ...
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
51 views

Where to put utility methods in Ruby superclass

I'm writing a Ruby object that will be used as the superclass of arbitrary classes that inherit from it. The class has a couple well-defined methods, along with many small utility methods, to factor ...

1 2 3 4