Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

4
votes
3answers
113 views

Why does overriding a method only occur after I implement an interface?

I've been reading through the book Working Effectively with Legacy Code and I've been playing around with the concept of overriding difficult to test methods in unit tests via the creation of a fake. ...
3
votes
5answers
789 views

Custom Control in ASP.NET C#

I created a simple custom control that only inherits from the Literal control, and doesn't have any extensions yet, code is empty. Namespace: CustomControls Class name: Literal : ...
2
votes
1answer
59 views

rails named_scope as an extension to AR::Base

class SomeModel < ActiveRecord::Base named_scope :recent, lambda { { :conditions => ['created_at > ?', 1.week.ago] } } end I want to extend the AR::Base class to have this named_scope for ...
1
vote
1answer
212 views

do extended classes inherit static var values (PHP)?

If I have a base class that contains a static var, I then set this static var, and then have a class that extends the base class, will the extended class retain the value of the static var that I have ...
0
votes
0answers
10 views

GWT: FooClass extends Image, invisible

I have some trouble making images appear after I extend the Image class. I have a Fooclass that extends Image in GWT. Fooclass has one additional variable and methods. Then I have a Barclass that ...
0
votes
1answer
29 views

android activitygroup and listactivity

I need to have a List in an Activity that is in a TabHost. The list gets opened when a button is clicked. I however want the new activity to open up and keep the tabs on top, so I created a class, ...
0
votes
0answers
28 views

Modify a textbox's text by selecting a value from a listbox in a popup

I need to have a predicting TextBox in a Silverlight application, I'm aware of the toolkit's "AutoCompleteBox", but as it stands, the autocompletebox is insufficient as it can only predict one result. ...
0
votes
1answer
47 views

Magento: how to add my own function to standard objects?

I have Magento eCommerce site and have such function: function is_wholesale($category) { if ($category->getId() == 7) { return true; } else { $category = $category -> ...
0
votes
1answer
59 views

extending Node.addEventListener method with the same name

I'm trying to extend the Node.addEventListener method so I can do some events management like: Node.prototype.on = function (type, listener, useCapture) { 'use strict'; var i, evt; ...
0
votes
5answers
124 views

C# add to class in another DLL

...is it possible? For example, can I add this simple function... public static double Deg2Rad(double degrees) { return Math.PI / 180 * degrees; } ...to the Convert class? So (using the ...
0
votes
2answers
234 views

Extending RequiredFieldValidator

Hello I'm trying to extend the requirefieldvalidator to take a new property and validate regularexpressions also. I know I can use the RegularExpression control but then i need 2 controls so i want to ...
0
votes
1answer
193 views

Simplest way to extend Dashcode components?

I'm presently working on a project in Dashcode, and am getting increasingly frustrated at how the default classes have very little in the way of bind-able events much like jQuery uses. Dashcode ...
0
votes
1answer
181 views

how do i extended 3rd party classes in cakephp?

I want to extended, not just create a new instance of a class I have sitting in my vendors directory. I googled and read the docs but I see no support for it. Can I do an app import of the 3rd party ...
0
votes
2answers
134 views

Extending mysqli and using multiple classes

I'm new to PHP oop stuff. I'm trying to create class database and call other classes from it. Am I doing it the right way? class database: class database extends mysqli { private $classes = ...
0
votes
4answers
957 views

In C++ can you extend a parameterized base class with different parameter value in the child class?

In all the languages that I understand this is not possible but someone was telling me it was possible in C++ but I have a hard time believing it. Essentially when you parameterize a class you are ...
0
votes
3answers
919 views

Extending Flex FileReference class to contain another property

I want to extend the FileReference class of Flex to contain a custom property. I want to do this because AS3 doesn't let me pass arguments to functions through event listeners, which makes me feel ...