0
votes
3answers
76 views
c# inherited class initialization
so with this class i have
public class Options
{
public bool show { get; set; }
public int lineWidth { get; set; }
public bool fill { get; set; }
…
1
vote
6answers
93 views
An abstract method overrides an abstract method
public abstract class A
{
public abstract void Process();
}
public abstract class B : A
{
public abstract override void Process();
}
public class C : B
{
public overr …
0
votes
4answers
41 views
Override default behaviour for link (’a’) objects in Javascript
Hi,
I don't know if what I'm trying to accomplish is possible at all. I would like to override the default behaviour for all the anchor objects ('a' tag) for a given HTML page. I …
0
votes
3answers
49 views
Javascript: how to override public method in some class?
I have such JS class:
SomeClass = function {
// some stuff that uses initRequest
this.initRequest = function() {
if (window.XMLHttpRequest) {
…
1
vote
1answer
36 views
What is the cleanest way to add code to contrib.auth
I've migrated an old joomla installation over to django. The password hashes is an issue though. I had to modify the get_hexdigest in contrib.auth.models to have an extra if statem …
12
votes
8answers
213 views
JavaScript: Overriding alert()
Has anyone got any experience with overriding the alert() function in JavaScript?
Which browsers support this?
Which browser-versions support this?
What are the dangers in overri …
0
votes
3answers
59 views
Override Page_PreInit() globally without subclassing Page?
I think somewere I saw an example about this but can not find it anymore:
Is there was a way to override a Page_Init() event on a global basis without creating a new MyCustomPage …
1
vote
4answers
70 views
Hashtable how to get string value without toString().
How could I get the string value from a hashtable without calling toString() methode?
example: my class:
public class myHashT : Hashtable
{
public myHashT () { }
...
public ov …
0
votes
2answers
81 views
Override default Show behaviour / SetVisible of TForm’s descendant (Delphi VCL)
I would like to alter the Show default behaviour of a TForm's descendant (for eg. instead of showing itself on the screen, I would like to place it on a page control as a new tabsh …
2
votes
5answers
103 views
Flex Component Lifecycle: validateNow, validateDisplayList, invalidateDisplalList, commitProperties, etc.
I am extending VBox to make a Calendar component. What method should I override to add the code to draw itself? What is the difference between all these methods? Is there something …
1
vote
1answer
169 views
‘Must Override a Superclass Method’ Errors after importing a project into Eclipse
Anytime I have to re-import my projects into Eclipse (if I reinstalled Eclipse, or changed the location of the projects), almost all of my overridden methods are not formatted corr …
8
votes
11answers
325 views
Force a class to override the .equals method
I have a bunch of class who implement a common interface : Command.
And this bunch of class goes to a Map.
To get the Map working correctly, I need to each class who implements …
2
votes
4answers
110 views
How to call overrided methods in a subclass? Potential candidate for refactoring
Originally I had a design problem where I needed five subclasses of a superclass, where all but two would use the same generic method of doing things and the other two classes woul …
0
votes
3answers
126 views
Inherited method needs one more parameter
I have a parent class with several children. One of the children, has one overridden method that, for its particular internal usage, needs one more parameter. I don't want to chang …
0
votes
1answer
31 views
How do I override calls to ActiveX and Java Applets made by javascript so that I can change the resource path? These objects are being dynamically embeded.
I have developed a reverse proxy and currently ONLY process the "html/text" responses from the remote applications, everything else (images, javascript, etc) are passed thru unmodi …
