Tagged Questions

Overriding is the process of replacing (though often with the calling of the base implementation) the base implementation of a method (or property in relevant languages).

learn more… | top users | synonyms

22
votes
10answers
20k views

Shadows vs. Overrides in VB.Net

Would some OO guru mind explaining the significance of these two keywords--what they do and for which context is one or the other preferable?
7
votes
2answers
286 views

Invoking a method via reflection with generics and overrides

I'm trying to invoke the RegisterType method in the Unity container. RegisterType has a total of 16 overrides (some of those are parameters some are types). I'm trying to perform the equivalent of: ...
3
votes
4answers
54 views

How do I override, not hide, a member variable (field) in a C# subclass?

I want this to tell me the Name of both ItemA and ItemB. It should tell me "Subitem\nSubitem", but instead it tells me "Item\nSubitem". This is because the "Name" variable defined in the Subitem class ...
3
votes
3answers
52 views

Don't use type tests, declare doTheTask?

I'm going through Java For Everyone by Cay Horstmann. I'm a bit confused on when it says: Don't Use Type Tests This is about using instanceof operator for specific type tests in order to ...
3
votes
1answer
124 views

AS3 - extend a function?

I have an Entity class with a destroy() function. I also have an Enemy class that extends Entity, and I want to add some lines to the destroy() function. Is there a way to extend functions in ...
2
votes
4answers
113 views

Anonymous class, Inheritance, and overriding

public class A { public A() { foo(); } private void foo() { System.out.print("A::foo "); goo(); } public void goo() { System.out.print("A::goo "); ...
2
votes
2answers
89 views

Why I must use Overloads here?

First, please look at this custom Button-inherited UserControl code: Public Class UserControl1 Dim _Text As String Dim _Image As Image <Browsable(True), Description("Gets or sets the text ...
2
votes
2answers
745 views

OnKillFocus() override in MFC triggering at odd times

I need to know when my Window goes out of input focus, so I overloaded the OnKillFocus() method of the CWnd. However it doesn't invoke this method when I focus another application (alt+tab), or even ...
1
vote
1answer
51 views

external css in body of html file

I have a question that bothers me on some projects I'm currently working on. This question is not a duplicate of What's the difference if I put css file inside <head> or <body>? or ...
1
vote
2answers
57 views

Cost of calling parent overidden function

In the following code: class Base { void funcA(); void funcB(); . . }; class Derv : public Base { int m_state; void funcA(){ m_state = 1; Base::funcA(); } void funcB(){ m_state ...
1
vote
1answer
176 views

Override datetimepicker vb.net

I would like to overrides the datetimepicker object to remove the texte when the property _clearOnDisabled is true. When _readOnly property is true, I would like to show the text in black not gray. ...
1
vote
1answer
136 views

c# Form Designer - generated code problem

I have map control on main form. Problem is, when form designer generate code then overrides value of variable (RouteOverlay and MarkerOverlay) with new value and i don't want that. Before generated ...
1
vote
2answers
562 views

Django - Block tags in included templates get overridden by calling template

I have a template that includes another template. This included template has block tags in it. Example: base.html BASE {% block title %}Base Title{% endblock %} {% block content %}{% endblock %} ...
1
vote
1answer
358 views

Binding keys with javascript while preventing the browser shortcut keys

I'm making a javascript game and need to bind a lot of keys to different functions. This I know how to do, what I need some help on is over-riding the shortcut keys for the browser. in other-words I ...
0
votes
1answer
28 views

Ruby override .index() in String to search for a character or its HTML equivalent

So... I've been working with WYSIWYG editors, and have realized, that they occasionally replace certain characters with the hex codes for that character, like the ' or the & for example. How do I ...
0
votes
1answer
62 views

override of static method and final method

I know in Java, static method can not be overriden by the subclass. Two questions: 1. Why is that? Could anyone explain me the reason inside it? 2. Can subclass override final method in super ...
0
votes
4answers
61 views

What is the best way to represent a stateless property that can be overridden?

I have an abstract class that implements some feature, let's say FileFormat. For each file format I want to support, I have a subclass, such as ZipFileFormat or TextFileFormat. Some features of a ...
0
votes
1answer
60 views

Over Ride Magento app/design/frontend/base/default/template in Custom Template

Im trying to over ride /app/design/frontend/base/default/template/paypal/partner/logo.phtml in my custom template called MyTemplate do I copy paypal/partner/logo.phtml under ...
0
votes
5answers
64 views

Call an overriden method from the super class

I have a question about overriding methods. if i have class a that has a method that can be overriden by the subclasses but is called in the superclass public class a { //this is the main class ...
0
votes
3answers
91 views

Why does element style override class that is set on element?

Our problem is like this. We have piece of code like this. <div class="parent"> <div class="child"> <a href="#" class="child_item" onclick="return false;" ...
0
votes
1answer
52 views

Call an overridden method in my main class

My code is like this... but there seems to be a problem when I call the overridden method createHome(). Here is a sample code: public class Test extends SweetHome3D { public static void main(String ...
0
votes
4answers
81 views

How do I override a method

class TestTax { public static void main (String[] args){ NJTax t = new NJTax(); t.grossIncome= 50000; t.dependents= 2; t.state= "NJ"; double yourTax = ...
0
votes
2answers
266 views

Overriding protected internal methods

I'm rewriting a web application to ASP.Net 4.0 and have included a Menu control (bound to a SiteMap file, naturally). While I'm liking the new RenderingMode property, I'm hating the fact that it ...
0
votes
6answers
211 views

Overriding methods in compiled library without inheritance in C#

I have a class library in C# which is compiled into a dll. Is it possible to change something in a compiled class method for a specific project without touching the original source code or creating a ...
0
votes
1answer
574 views

How to override a Magento administration panel?

I would like to know how have I do to add a field in the customer administration at system->configuration->Customer settings panel. Have I create the system.xml file from the core and paste in the ...
0
votes
1answer
122 views

How do I prevent security overrides in my WCF service config file?

I have to create a WCF service which returns sensitive information to the client. I need to ensure that the security of the service cannot be compromised easily. I'll use WCF's built in security ...
-1
votes
2answers
37 views

Trigger an Event in javascript before objects finish to load

I was trying to write a global JavaScriptfunction which overrides any HTML object (img, iframe, links and so on) before it being loaded by the page. The purpose of the overiding action was to to ...