Top "Extend" questions

Cause a unit of code (a class in POO, a style class in CSS ...) to cover a wider area.

1152: A conflict exists with inherited definition in namespace public

I have an actionscript 3 library item, "BG", that is linked to the class BGClass. BG contains a Sprite that has …

flash actionscript-3 actionscript extend
Private members when extending a class using ExtJS

I have done some research on the ExtJS forum regarding private methods and fields inside a extended class, and I …

javascript extjs private extend private-members
Laravel extend a vendor class installed from composer

Hi I am using the following package https://github.com/jayhealey/Robots to add a different robots.txt file per …

laravel-4 extend
Jinja2: Render template inheritance?

I'd like to render a fused Jinja2 and Markdown page using a template, which looks like so: {% block title %}{{ title }}{% …

python extend jinja2
User defined __mul__ method is not commutative

I wrote a class to represent vectors in Python (as an exercise) and I'm having problems with extending the built-in …

python extend built-in
jQuery fn.extend ({bla: function(){}} vs. jQuery.fn.bla

OK I think I get Difference between jQuery.extend and jQuery.fn.extend? in that the general extend can extend …

jquery performance syntax jquery-plugins extend
What's the difference between mixin() and extend() in Javascript libraries

I'm looking through various libraries, and seeing extend() pop up a lot, but I'm also seeing mixin() show up. YUI …

javascript design-patterns extend mixins
In Java, can anonymous classes extend another class?

Code like: protected Interface1 varClass1 = new Interface1() { But I would also like that this anonymous nested class also extends the …

java class nested extend anonymous
Python: list.extend without mutating original variable

I am wondering whether there is a way in Python to use .extend, but not change the original list. I'd …

python list extend
How to extend DataRow and DataTable in C# with additional properties and methods?

I would like create a custom DataRow that will have -let's say- a propery called IsCheapest. public class RateDataRow : DataRow { …

c# ado.net datatable extend datarow