Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

6
votes
4answers
632 views

How to enforce a method call (in the base class) when overriding method is invoked?

I have this situation that when AbstractMethod method is invoked from ImplementClass I want to enforce that MustBeCalled method in the AbstractClass is invoked. I’ve never come across this situation ...
6
votes
13answers
3k views

Create a method call in .NET based on a string value

Right now, I have code that looks something like this: Private Sub ShowReport(ByVal reportName As String) Select Case reportName Case "Security" Me.ShowSecurityReport() ...
2
votes
3answers
702 views

c++ virtual (sealed) function

I am using classes from a dll in my c++ project. All is working fine, until... When trying to call a certain method (listed in the object browser), I am getting an error that this method is not a ...
1
vote
2answers
86 views

Java, invoking methods on objects one after the other (C# style)

I was wondering if Java had a form of this: new Object().methodOne("This is the first method").methodTwo("Second attached method"); new String("Hello World ").TrimEnd().Split(' '); thank you
1
vote
3answers
2k views

Method calls with time interval (asp.net c#)

Hi I want to call a method based on one time span here is my trail protected void binddata(object sender, EventArgs e) { // my logic here } Now I want to call this method for ...
0
votes
1answer
130 views

why i get the exception in android

I have write android application which will call REST web service. First time, i try android application with variable is fixed.I can call web service successfully. But now when i create GUI in ...
0
votes
1answer
126 views

call compile-time-checked method with dynamic arguments in c#

Ok, this is what I want to do: public static void CallStaticMethod(Type myType, String methodName, Object[] parameters) { MethodInfo m = myType.GetMethod(methodName); // make this compile-time ...
0
votes
5answers
553 views

NullPointer Exception when calling method from a difference class

JAVA- Hi, I am writing a minesweeper program (first biggie) and am really stuck. The program itself is comprised of 2 classes (one for the logic, one for the GUI) as per the specifications that I am ...
0
votes
1answer
179 views

Python instance method making multiple instance method calls

Here is some snippet code. I have tested the methods listed and they work correctly, yet when I run and test this method (countLOC) it only seems to initialize the first variable that has an instance ...