Tagged Questions

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 ...
0
votes
7answers
150 views

Extending a class in java but it wont inherit properties from the superclass

ok so on my program i have some labels (which are in an array and stuff) anyway i want to add my own property to the inbuilt Label class, anyway so i tried extending it public class LabelMod extends ...
0
votes
3answers
127 views

inheritance problem OOP extend

If a Father is a Parent and a Parent is a Person and a Person has a Father I create the following: class Person{ Father father; } class Parent extends Person{} class Father extends Parent{} ...