1
vote
3answers
76 views
Why isn’t this method chosen based on the runtime-type of its object?
Consider this:
class A {
int x =5;
}
class B extends A{
int x =6;
}
public class CovariantTest {
public A getObject() {
return new A();
}
/**
* @param …
1
vote
7answers
1k views
In Java, how to I call a base class’s method from the overriding method in a derived class?
Hello everybody,
I have two Java classes : B, which extends another class A, as follows :
class A
{
public void myMethod()
{ /* ... */ }
}
class B extends A
{
public void myMethod()
…
0
votes
2answers
59 views
Is there a way to automaticly call all versions of an inherited method?
I'm writing a plug-in for a 3D modeling program. I have a custom class that wraps instances of elements in the 3D model, and in turn derives it's properties from the element it wraps. When the element …
0
votes
1answer
7 views
Is a bad practice to use in method signature DbCommand ?
Hello,
I'm using EnterpriseLibrary and DbCommand from it. I have two methods which from database gets same formated select. So the DataReader looks same but I'm executing other procedures.
Question …
0
votes
1answer
44 views
jQuery each method does not return value
$(document).ready(function() {
$('#commentForm').submit(function(){
return $('input[type=text], textarea').each(function(index){
if($(this).attr('value') == ""){
…
-1
votes
1answer
18 views
Need plan of action to upgrade graphics toolkit in company’s applications
My job is to upgrade all of our applications that use OpenSceneGraph (an openGl toolkit) version 0.9.9 to the latest and greatest 2.8. Well quite a few caveats come with this task:
1.) After version …
3
votes
3answers
37 views
Pass method, created with reflection, as Func parameter
Hello,
I've got a method (fyi, I'm using c#), accepting a parameter of type "Func", let's say it's defined as such:
MethodAcceptingFuncParam(Func<bool> thefunction);
I've defined the …
1
vote
5answers
96 views
C# sample syntax question
Please, help me with to understand this piece of code:
protected Customer()
{
}
in the following class (Model class from sample WPF MVVM app):
public class Customer : …
1
vote
4answers
98 views
running a method within another method. python
I am calling a method within another. and the error for this script i am getting is
NameError: name 'mnDialog' is not defined
Is there a reason for it? I think it has something to do with …
1
vote
2answers
36 views
Answering “Which method called me?” at the run-time in .NET? Or is CallStack data readable by the code?
Presume that there are methodA() , methodB() and methodC().
And methodC() is called at the run-time.
Is is possible to know methodC() is called from what method?
I was thinking if CallStack can be …
0
votes
1answer
31 views
Using Generic Methods with a WebService like WCF or ADO.NET Data Services
Is it possible to use generic methods with WCF or ADO.NET DS?
Or is it possible to create a generic WebService Repository with WCF or ADO.NET DS?
0
votes
4answers
165 views
How in C# to pass a name of the object as a parameter to function?
I have the code that change the state of boolean property on mouseclick, depending on name of the clicked object:
private void Grid_MouseLeftButtonDown(object sender, MouseButtonEventArgs e)
{
…
0
votes
1answer
76 views
ajax post for django template
HI all,
I have a problem when i want to submit value then full page again reload.
I want to update my table with asynchronous call, that specific information will be loaded but full page not... plz …
5
votes
5answers
144 views
Faking method attributes in PHP?
Is it possible to use the equivalent for .NET method attributes in PHP, or in some way simulate these?
Context
We have an in-house URL routing class that we like a lot. The way it works today is …
0
votes
1answer
20 views
Scope of class help
Hi I'm trying to reuse some code i was pointed to earlier to run a 3rd party .exe inside of a my winform
the code i was given was
via Mr. Greg Young
public class Native {
…
