Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

15
votes
6answers
11k views

Python - append vs. extend

What is the difference between the list methods append and extend?
12
votes
2answers
10k views

Difference between jQuery.extend and jQuery.fn.extend?

I am trying to understand the jquery plugin syntax, because I want to merge two plugins into one. The blinker that also needs to be able to stop de interval or run a number of times. Anyway, is this ...
11
votes
5answers
96 views

get parent extends class in php

i have the oop php code: class a { // with propertie and functions } class b extends a { public function test() { echo __CLASS__; // this is b // parent::__CLASS__ // error } } $b = new b(); ...
11
votes
3answers
7k views

Rails extending ActiveRecord::Base

I've done some reading about how to extend ActiveRecord:Base class so my models would have some special methods. What is the easy way to extend it (step by step tutorial). Thx!
10
votes
3answers
3k views

Best Way to Extend a jQuery Plugin

I'm a fairly new jQuery user looking to extend an existing jQuery plugin that does about 75% of what I need. I've tried to do my homework on this. I've checked out the following questions on ...
8
votes
2answers
95 views

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 operators. I defined a __mul__ method for the vector class. The problem is that in ...
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
2answers
148 views

Merge JS objects without overwriting

Suppose you have two objects: var foo = { a : 1, b : 2 }; var bar = { a : 3, b : 4 } What's the best way to merge them (and allow deep merging) to create this: var foobar = { ...
7
votes
7answers
199 views

'final' modifier on a class in Java

I have a quick and simple question. I have a habit of making every class 'final' unless of course, it needs to be extended by another. Is this a bad habit? A good habit? Does it even matter? I ...
7
votes
3answers
252 views

Extending a list of lists in Python?

I might be missing something about the intended behavior of list extend, but why does the following happen? x = [[],[]] y = [[]] * 2 print x # [[],[]] print y # [[],[]] print x == y # ...
6
votes
2answers
100 views

Reuse and extend the defined type in Ocaml

In Ocaml, is there a simple construct/style to extend a defined type? Say, if we have the boolean type bool2 = True | False Now we want to extend it for 3-valued logic. In Ocaml, is there more ...
5
votes
2answers
356 views

Inverse of jQuery.extend(true, …)

I'm looking to reduce storage requirements for JSON data by deltifying it against a known set of defaults. Basically, what I want is an inverse for jQuery's .extend() function, such that the ...
5
votes
3answers
4k views

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 couldn't find any real answer to this. And when I say an extended class I mean ...
5
votes
5answers
315 views

Re-Inventing The Label Control

I need to reinvent/recreate the Label Control from scratch to add my own mojoness to it. Yes, I know what you're thinking (and if you're not thinking that, shouldn't you be?). Can somebody point me ...
5
votes
3answers
921 views

Extending a Scala collection

I want a Map that throws on attempt to overwrite a value for existing key. I tried: trait Unoverwriteable[A, B] extends scala.collection.Map[A, B] { case class KeyAlreadyExistsException(e: ...
5
votes
5answers
186 views

Strange syntax of Number methods in JavaScript

Take a look at the following code: Number.prototype.isIn = function () { for (var i = 0, j = arguments.length; i < j; ++i) { if (parseInt(this, 10) === arguments[i]) { return true; ...
5
votes
1answer
8k views

My control is “not allowed here because it does not extend class 'System.Web.UI.UserControl'”

So I have another noodle-scratcher (for me anyway). I'm trying to create my own custom control in a CMS I only have partial source code for (i.e. samples the vendor has supplied to me). Basically I ...
4
votes
3answers
128 views

Is it possible to extend Eclipse Search Menu

right now in eclipse it is not possible to extend Menu defined by Other plugins by using eclipse extension: org.eclipse.ui.menus. I want to add one menu item in Search but not a search page. since ...
4
votes
3answers
270 views

Extending a datatype in Haskell

Haskell newbie here. I wrote an evaluator for a minimal assembly-like language. Now, I want to extend that language to support some syntactic sugar which, I will then compile back to use only the ...
4
votes
2answers
150 views

How does python process a signal?

What is the workflow of processing a signal in python ? I set a signal handler, when the signal occur ,how does python invoke my function? Does the OS invoke it just like C program? If I am in a C ...
4
votes
8answers
120 views

How to move away from Inheritance

I've searched in here and other forums and couldn't find a good answer.. I kind of know that Extending classes isn't the best of practices. And that I should use Interfaces more. my problem is that ...
4
votes
2answers
695 views

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 an instance name, "bg" and likewise BGClass has a public bg property. So the class looks ...
4
votes
1answer
158 views

Classloading a plugin for a custom application produces a NoClassDefFoundError

I'm having some issues wrapping my head around the concept of classloading, I've been programming for a little while now but I'm relatively knew to how classloading works, I've gone through a couple ...
4
votes
5answers
203 views

Better to extend a class or modify it directly?

So I'm working on creating a visualization for a data structure in Java. I already have the implementation of the data structure (Binary Search Tree) to start with, but I need to add some additional ...
4
votes
1answer
960 views

Java Swing: Extend DefaultComboBoxModel and override methods

I am using the DefaultComboBoxModel to display a list of customers in a ComboBox. The list currently displays their name only. I would also like to have a reference to each customer within the ...
4
votes
3answers
1k views

Is it possible to extend a class dynamically?

I have a class which I need to use to extend different classes (up to hundreds) depending on criteria. Is there a way in PHP to extend a class by a dynamic class name? I assume it would require a ...
4
votes
4answers
1k views

Putting separate python packages into same namespace?

I'm developing a python framework that would have "addons" written as separate packages. I.e.: import myframework from myframework.addons import foo, bar Now, what I'm trying to arrange is so that ...
4
votes
3answers
2k views

Can I extend lisp with c++?

Can I call a function from lisp from a library written in c or c++? How can I extend lisp? This is useful when you want to do some system calls or stuff like that.
3
votes
2answers
126 views

why extend a python list

Why use extend when you can just use the += operator? Which method is best? Also what's the best way of joining multiple lists into one list #my prefered way _list=[1,2,3] _list+=[4,5,6] print _list ...
3
votes
2answers
115 views

javascript cloning a “class” instance

I have a class that goes like this. function Element(){ this.changes = {}; } Now I have an instance of this "Class" like so, el = new Element(). These instances are stored in an array, like ...
3
votes
3answers
44 views

PHP inheritance question regarding extended classes

If I got two classes extending a 3rd classs will the content of the 3rd class be instantiated twice when instantiating both, the 1st and 2nd class? Example: class class1 extends class3{} class ...
3
votes
1answer
59 views

How should I go about using jQuery extend when my config file has a normal array in it?

Seems $.extend uses only the keys of its input to determine what to overwrite. So when my config looks like this var config = { "numeric" : false, "keycode_whitelist" : [ 37, 39, // ...
3
votes
3answers
290 views

How can I make a class not extendable without using the final keyword?

How can I achieve this without the final keyword? What must I change to the constructors? public final class testName { testName() { //do something } }
3
votes
1answer
238 views

How to extend ImageButton correctly?

I want to extend the functionality of the ImageButton class, in a new class I choose to call "DialButton". To start off, I simpy extend ImageButton, and added nothing new. In my mind, this should be ...
3
votes
2answers
115 views

Make DateTime::createFromFormat() return child class instead of parent

I'm extending DateTime do add some useful methods and constants. When using new to create a new object everything is fine but when using the static method createFromFormat it always returns the ...
3
votes
1answer
378 views

JavaScript getters/setters and extending objects

I'm researching getters and setters in JavaScript and how well they go with spread functions for extending objects, like jQuery's $.extend and Underscore's _.extend. The code setup is as follows: var ...
3
votes
7answers
330 views

A way to pass milions of items in python to C program many times in rapid succesion

I've wrote a python script that need to pass millions of items to a C program and receive its output many times in a short period (pass from 1 up to 10 millions of vertices data (integer index and 2 ...
3
votes
1answer
813 views

Extending hibernate entities with annotation

i need to extend an entity, with the same characteristics without using abstract classes. can i code something like below? @Entity @Table(name="ABC") ...
3
votes
3answers
210 views

JavaScript Inheritance question

This is the extend function from the book "Pro JavaScript Design Patterns" function extend(subClass, superClass) { var F = function() {}; F.prototype = superClass.prototype; ...
3
votes
9answers
3k views

Can you extend ArrayList in Java?

Is it possible to make a child class that extends ArrayList? If so, how?
3
votes
3answers
167 views

What JS objects can be added through appendChild()?

I am trying to extend the DOM. I "subclassed" from the Div element: var Subclass = function() {} Subclass.prototype = document.createElement('div'); Subclass.constructor = Subclass; var obj = new ...
3
votes
1answer
464 views

Creating a Custom Subclass of ColorFilter?

Okay, so this is somewhat related to my previous question on the ColorMatrixColorFilter, but I feel it's a significantly different question. I'm wondering if there's a way - or rather, how to extend ...
3
votes
1answer
623 views

How do I extend a json object with jquery extend?

var dataset = {"read_data":[{"date":"2010\/11\/02 03:30:05","value":"2"}, {"date":"2010\/11\/02 03:30:06","value":"1"}]}; var append = ...
3
votes
3answers
621 views

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 { protected internal RateDataRow(DataRowBuilder builder) : ...
3
votes
5answers
431 views

How can I extend Scala collections with an argmax method?

I would like to add to all collections where it makes sense, an argMax method. How to do it? Use implicits?
3
votes
4answers
359 views

Django design question: extending User to make users that can't log in

The site I'm working on involves teachers creating student objects. The teacher can choose to make it possible for a student to log into the site (to check calendars, etc) OR the teacher can choose to ...
3
votes
4answers
447 views

Extending a singleton class

i used to create an instance of a singleton class like this: $Singleton = SingletonClassName::GetInstance(); and for non singleton class: $NonSingleton = new NonSingletonClassName; i think we ...
3
votes
3answers
200 views

How to explain to someone that a data structure should not draw itself, explaining separation of concerns?

I have another programmer who I'm trying to explain why it is that a UI component should not also be a data-structure. For instance say that you get a data-structure that contains a record-set from ...
3
votes
1answer
1k views

How do you call parent object functions from child objects in javascript

So, I was reading up on John Resig's blog, saw his micro-templating javascript engine and decided to try and implement my own template management system for javascript, to deepen my understanding of ...
3
votes
4answers
3k views

Python:Extend the 'dict' class

I have to solve this exercise: Python's dictionaries do not preserve the order of inserted data nor store the data sorted by the key. Write an extension for the dict class whose instances will keep ...

1 2 3 4 5 6