Tagged Questions

0
votes
2answers
60 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 …
1
vote
2answers
25 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; pub …
1
vote
1answer
191 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 corr …
0
votes
1answer
94 views

How to invoke a method with a superclass.

I'm trying to invoke a method that takes a super class as a parameter with subclasses in the instance. public String methodtobeinvoked(Collection<String> collection); Now …
0
votes
2answers
28 views

Making a superclass object become a sublcass object in PHP5

<?php class A{ //many properties protected $myProperty1; protected $myProperty2; protected $myProperty3; public function __construct(){ $t …
1
vote
4answers
204 views

Can I change a private readonly inherited field in C# using reflection?

like in java I have: Class.getSuperClass().getDeclaredFields() how I can know and set private field from a superclass? I know this is strongly not recommended, but I am testin …
2
votes
3answers
254 views

.NET / C# - Reflection Help - Classes in an Assembly

What is the best way to loop through an assembly, and for each class in the assembly list out it's "SuperClass"?
1
vote
6answers
263 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' s …