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).
0
votes
0answers
7 views
Applying XMLAttributeOverrides to different instances of same type
Say I have some objects:
public class Family
{
Person mum { get; set; }
Person dad { get; set; }
}
public class Person
{
string Name { get; set; }
int Age { get; set; }
}
The ...
2
votes
1answer
44 views
Declaring concrete method in abstract class
I need to override toString() method for all of the concrete method of my abstract class - exactly the same in all cases. So here is what I want to do (SomeEnum is a separate class which has just an ...
0
votes
0answers
33 views
understanding Code Analysis in VS2012 with warning CA2214
I am using EntityFramework 5.x with Database first approach.
When my EF generate POCO classes for the tables, it created constructors like below
public partial class tUserGroup
{
public ...
4
votes
2answers
105 views
what is (overrides) in objective c
I'm following a tutorial on how to create a popover in Iphone here
what is (overrides) this code:
@interface UIPopoverController (overrides)
+ (BOOL)_popoversDisabled;
@end
@implementation ...
2
votes
3answers
89 views
Override method in inherited interface with subtype with java generics
I have the following hierarchy in java:
interface ObserverA {}
interface A {
void method1();
addObserver(Observer o);
}
And I want to extend it like this:
interface ObserverB extends ...
1
vote
2answers
97 views
Override Setter in Subclass
I'm stuck with a problem here. I want to change the setter from a attribute from the superclass (parent class) in my subclass (child) however when I overide this method in my subclass I can't access ...
0
votes
1answer
34 views
I want to override a few pieces of my CSS for mobile browsers
I have a website that for the most part resizes correctly for mobile browsers. However there are a few items that I'd like to display in block format in mobile browsers. Is there a way to just ...
0
votes
1answer
645 views
Prestashop Module's CSS Override
I'm new to Prestashop. I want to override the CSS file of a module, say blockpermanentlinks.
The official documentation says that I have to put the new CSS file in
...
0
votes
0answers
28 views
Can an app override the in-game settings for a mouse cursor?
I'm visually impaired and a pet-peeve of mine is loading up a video game and realizing I can't play because they chose a mouse cursor that while I'm sure is aesthetically pleasing, I can't see.
So I ...
0
votes
2answers
46 views
overriding a set of namespaced constants
in order to minimize hardcoded values throughout my program, i have defined a set of constants, like the following Constants.py:
FOO = 42
HOSTNAME=socket.gethostname()
BAR = 777
all modules that ...
0
votes
0answers
46 views
Show all overrides using ensime (scala)
Using ensime, is there any way I can look at a function, let's say in some super class, and see all of the places that function is overridden in the corresponding subclasses? I believe that IntelliJ ...
0
votes
1answer
136 views
VB.NET Form “New”: Too many arguments
I made a "custom" form as seen below. When I say:
Dim nSplash As New frmSplash(nBitmap)
It is telling me that there are too many arguments for Public Sub New.
I do not see why it is mocking about ...
1
vote
0answers
76 views
User Agent Style overriding Font in one language
I am hoping for some direction or clues on tracking down a defect.
I have a ul side menu with links to aspx pages
A subset of these pages render the menu items in italic when the language is French ...
0
votes
0answers
72 views
Named Template Override with Multiple Stylesheets
I am trying to override an attribute value in one named template defined in one xslt stylesheet by another named template of the same name in another stylesheet where the first stylesheet is imported ...
1
vote
1answer
47 views
Override brabeion templates path in Django
I'm using brabeion in my project and I noticed that it comes with a urls.py and a views.py files, the problem is that it doesn't come with the respective templates required for the views to work.
I ...
3
votes
3answers
198 views
Calling an optional method in superclass (Objective-C)
I'm trying to create a generic implementation for the NSCoding protocol.
The code will be wrapped around in a macro the will implement NSCoding.
In order to implement the protocol, we need two ...
0
votes
0answers
105 views
How do I override an existing plugin in ImageJ ? I have a custom reader for an already existing format
I am using the CSI DM3 Reader ( http://code.google.com/p/cornell-spectrum-imager/wiki/Home ) to read my .dm3 files. I would like to add drag & drop functionality for this, so I changed the file ...
0
votes
0answers
349 views
tests of the local.xml file in Magento
Here are a few tests of the local.xml (default/mytheme/layout/local.xml) file in Magento.
As noted, not all worked as expected. Would appreciate experience of others here.
These are used for quick ...
1
vote
1answer
548 views
Is it possible to override css in Disqus 2012 using javascript after the Disqus thread has loaded?
I have updated to Disqus 2012 and my CSS overrides no longer work as Disqus is now loaded in an iframe.
However, I can override CSS using the inspector after the Disqus thread has loaded, so I am ...
0
votes
0answers
112 views
How to do a TEMPLATE OVERRIDE for joomla to disable ' edit profile' link
edit profile link cannot be disabled in Joomla via the administrator.
template override in Joomla needed to take away the edit profile option.
I have read the related posts and understand that to ...
0
votes
2answers
103 views
Cannot use hook to remove products from homepage
I'm trying to use deface to remove the product list on the home page of a new Spree theme.
I have the following override (overrides/remove_products.rb):
Deface::Override.new(:virtual_path => ...
6
votes
3answers
225 views
Statically detecting missing @Override annotations
Between Java 5 and Java 6, the rules regarding @Override annotations for methods originating in interfaces (as opposed to superclasses) were changed - before they were not allowed, but after they ...
0
votes
6answers
783 views
Override java string methods
Can we override all the methods of String class in our class by extending String class?
0
votes
1answer
608 views
rails, overriding bootstraps rules in production
hello im having trouble overriding bootstraps framework when it goes into a production server. on my local machine im able to override it but by putting it on heroku, it reverts back to twitters ...
0
votes
2answers
350 views
How to Override Children.Add method of Canvas class in WPF
I already have a Custom Canvas class in which i have override the 'OnMoseDown' method.
But now i also want to override 'Children.Add' method.
But i didnt find any solution.
I want to get ...
0
votes
0answers
191 views
Why cant I override theme_form_element_label in drupal 7?
I'm trying to customize form label output in Drupal 7.12 branch and I cannot figure out what is wrong and why is this function cannot be overridden.
here is example of my template.php
function ...
0
votes
2answers
105 views
Override handling for basic/primitive types within a scope
I'd like to be able to make code that looks like this:
30, 60, 90
And have it make a List<int> with those numbers in it. The problem is that in order to do this I believe I would need to be ...
5
votes
5answers
199 views
What type of Java constructor call is this?
I've never encountered something like this and I don't know this type of coding!
What is this? (I'm pretty new to Java)
DefaultHandler handler = new DefaultHandler() {
boolean bfname = ...
2
votes
1answer
151 views
Drupal string overrides and HTML
I am attempting to override an erroneous error message output by the persistent_login module thus:
$conf['locale_custom_strings_en'] = array(
'<p><b>SECURITY ...
3
votes
4answers
1k 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 ...
0
votes
1answer
124 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 ...
3
votes
3answers
66 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 ...
0
votes
1answer
353 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
87 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 ...
1
vote
1answer
157 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
1answer
477 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
...
1
vote
2answers
60 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 ...
0
votes
5answers
129 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
...
1
vote
1answer
723 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.
...
3
votes
1answer
1k 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 ...
0
votes
3answers
881 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;" ...
-1
votes
2answers
117 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 ...
2
votes
4answers
926 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 ");
...
0
votes
1answer
98 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 ...
1
vote
1answer
373 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 ...
6
votes
2answers
769 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:
...
0
votes
4answers
121 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 = ...
2
votes
2answers
117 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 ...
1
vote
2answers
2k 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 %}
...
0
votes
2answers
793 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 ...



