A method is code that performs a task and is associated with a class or an object.

learn more… | top users | synonyms (1)

0
votes
0answers
4 views

Converting integer memory address to static member function pointer

Im trying to detour a member function in a binary executable. I only know the function signature and the VA of the method. With the help of the 'method' sample, included in Detours Express 3.0, I came ...
0
votes
1answer
31 views

Get two different types of both data and structure from a method

Below Class is going to compare constant regular daily times and return closest one after now. (using Joda-Time library) public class TimeComparitor { private List<LocalTime> targetTimes; ...
0
votes
2answers
51 views

Java: How can I find the caller of a method at compilation time?

I have a Java problem for which I can't find an answer: I have a class A containing a method a() that should only be called from a class extending class B. For the moment, the best solution I could ...
1
vote
2answers
17 views

iOS. Add the same second action for UITableView didSelectRowAtIndexPath event?

I have several UITableViews with ready delegate and dataSource methods. How to add the same second action/handler for these tables using subclassing but without of editing their ...
0
votes
2answers
29 views

How to write single-line from multi-line blocks in ruby?

I'm trying to write the single-line block for each entity from array (@controller) and the purpose of this single block is yield the [n] element from the controller array, n is an accessor, now I ...
1
vote
2answers
91 views

delphi - class static method, static var in multi thread application

I relative new with delphi XE2, I want to know about something, if I have like this code TSomeClass=class strict private class var FCounter:integer; public class procedure ...
0
votes
2answers
27 views

New() method used in class definition to return a new object of itself in Ruby

I'm studying this snippet: def self.from_file(file_name) new(File.readlines(file_name)) end How does this code work? Does it only work for class methods? I understand this is supposed to return a ...
0
votes
2answers
45 views

Passing property to PHP method

I have the following class, where I added the property $user. include_once(__CA_LIB_DIR__."/ca/Search/BaseSearch.php"); include_once(__CA_LIB_DIR__."/ca/Search/ObjectSearchResult.php"); class ...
0
votes
3answers
44 views

Clever way for a method to accept any combination of unique objects as parameters?

I have a class that can be constructed with a String, Record, and Criteria. Is there any way to allow the method signature to accept these parameters in any order (other than creating multiple ...
3
votes
1answer
42 views

Assigning values to a referenced instance

I am an intermediate Java beginner and also completely new to stack overflow. (This is my first post.) I have a question about the following code and the assignment of values to a reference. First, ...
1
vote
0answers
29 views

AttributeError: 'RequestContext' object has no attribute 'user'

I'm getting this error, and I'd like any sort of input because it is a brick wall right now. I have an application, that is using flask-security, which imports current_user through flask-login. Any ...
-1
votes
2answers
73 views

Call an method of a class in an array - Java

I am having a problem with a project. So basically what I have is a class Shape with some sub-class ( ShapeRectangle, ShapeTriangle, etc ). In each sub-class, I got an outputShape method: ...
1
vote
2answers
103 views

C# - Access another class methods

I have something like this: public class Map { class DataHandler { private int posX, posY; // Other attributes public int GetX() { return posX; } public int ...
-2
votes
2answers
61 views

Can someone help me with this class [closed]

class database(object): def __init__(self): self.l = [] def insert(self, e): for i in range[len(self.l)]: if i == e: return self.l.append(e) Why is ...
0
votes
2answers
33 views

Calling method from another class from another file C#

I have declared a namespace in Feed.aspx.cs . This namespace contains a class and this class contains a method: Feed.aspx.cs namespace GetUser { public class MyFeedClass { public string ...
0
votes
1answer
29 views

Java nullpointerexception for a 2D scrolling game

I'm making a game, its 2D side scrolling, kinda like terraria. In my game, i have offsets, XOff and YOff, and those move the terrain. I also have a method for my character, move(), and all that does ...
1
vote
2answers
34 views

Call these from any controller?

I have the following in an initializer: @fedex ||= Pigeons::Fedex.new( ENV['FEDEX_KEY'], ENV['FEDEX_PASSWORD'], ENV['FEDEX_ACCOUNT'], ENV['FEDEX_METER'] ) I basically want to be able to ...
0
votes
0answers
52 views

Storing methods/members from different class in a variable to access them later?

I want to make a keybinding configuration menu for my application to enable users to map specific buttons/axes/keys/etc to actions in my application. I have, for example a joystick class and a ...
0
votes
2answers
30 views

How can I access a method with several swing components from another class? (Java)

Suppose: public class Window { public void Dialog () { JDialog JD = new JDialog(); // add pictures/labels onto JDialog } } And: public class Main { //Suppose here is a GUI with a button that ...
0
votes
3answers
53 views

Adding a method to Java class in different file without extending the class

package com.companyxyz.api.person; public class Man { public var1; public var2; ... private static void createAuth() { ... } // public methods go here ... } I want ...
1
vote
4answers
59 views

array ouput not correct

i am using 2 classes and a bunch of methods to store something in an array then writing it to a file. After i write something to a file, instead of being of the var double, this is my code: public ...
0
votes
2answers
62 views

Storing from one class to another in an array [closed]

I have to make a program which uses a different class for each part. For the first class: Quest1, I calculated the rate of growth in a population. Second class: Quest2, i have to store the growth into ...
0
votes
5answers
47 views

Issue with if /elseif /else [closed]

I am creating a whitelist if you will for a user to input data. I am getting stuck on the elseif statements. This is my code : public function is_valid_data($data) { if(strlen($data > ...
1
vote
3answers
55 views

What is the getApplicationContext() method? [duplicate]

I am busy learning android and I came across the getApplicationContext method. I didn't really understand what it was used for and what it's purpose is.
2
votes
3answers
55 views

Proper terminology for Object… args

I'm working in Java and the typical way you specify multiple args for a method is: public static void someMethod(String[] args) But, I've seen another way a few times, even in the standard Java ...
1
vote
1answer
44 views

Flash Error #1009: Cannot access a property or method of a null object reference …?

I have a problem when I create a menu with flash as3. Can you guys help what should I do ...? Like this : TypeError: Error #1009: Cannot access a property or method of a null object reference. at ...
0
votes
3answers
38 views

Java Reflection in android

This is my TYPEFACE class public class TYPEFACE { public static final Typeface Rupee(Context ctx){ Typeface typeface = Typeface.createFromAsset(ctx.getAssets(), "Rupee_Foradian.ttf"); ...
-5
votes
3answers
70 views

How to search a list and return the specific strings and data associated with it using Java

I have a list of names with Account numbers associated with them. How would I create a method that when I type a certain name from the keyboard it would search the list and return all the account ...
0
votes
3answers
57 views

Storing in Array from methods

im trying to a double in an array. The question is that i have to store the results from the user input in the array. For example, i ask the user for the initial population, first day and increase ...
-3
votes
0answers
18 views

Private Helper Methods [closed]

I have an assignment for uni that was split up in 7 stages. I did the first 4 stages by myself, but now I'm on the 5th stage, which is supposed to be easy, but I'm stuck and can't figure it out, I've ...
0
votes
0answers
91 views

Exit a method called in another class Java

I have been fighting with this but gave up and decided to ask for help. My main class calls the method DUNGWALKTEST.Start. The main class then calls another method END from another class once this ...
0
votes
0answers
56 views

Using Janino to evaluate composite method expressions

Is there any way of evaluating a composite method expression using Janino? For example, given a class definition like public abstract class Calculator { public abstract int plus(int a, int b); ...
-2
votes
1answer
37 views

Java Beginner Help Virtual Methods [closed]

I am a student in an OOP class, this is the first time I have ever actually worked with coding in Java and my head is spinning a bit. My project is incomplete but only because I cannot seem to find ...
0
votes
3answers
64 views

Why doesn't my code correctly create a list of tuples?

direction = ['north', 'south', 'east', 'west', 'down', 'up', 'left', 'right', 'back'] class Lexicon(object): def scan(self, sentence): self.sentence = sentence self.words = ...
0
votes
1answer
21 views

Using two GET variables in .htaccess (having problems outputting)

I'm currently trying to add a second get variable to an existing htaccess rule. I have little experience with the htaccess but using what expressions I know, I think it's missing one element to ensure ...
-1
votes
1answer
21 views

Call to undefined method stdClass:: [closed]

I am trying to delete an image and I keep getting this error message - Fatal error: Call to undefined method stdClass::delete_from_prints() in /home/wwwteres/public_html/admin/prints.php on line 51 ...
0
votes
0answers
15 views

Fatal error: Call to undefined method stdClass::delete_from prints() [closed]

Im trying to delete an image and i keep getting this error messsage - Fatal error: Call to undefined method stdClass::delete_from_prints() in /home/wwwteres/public_html/admin/prints.php on line 51 ...
0
votes
1answer
18 views

NoMethodError in Flights#show

Showing app/views/flights/show.html.erb where line #3 raised: You have a nil object when you didn't expect it! The error occurred while evaluating nil.name Extracted source (around line #3): 1: ...
0
votes
1answer
55 views

SQL Method to retrieve a value

In SQL, how can I create a simple method to retrieve a value from an object? Here is the code: create type CurrentUser_objtyp as Object ( CurrUserName varchar2(20), CurrUserPassword varchar2(20), ...
0
votes
2answers
26 views

Calling a method when another activity finishes

I am using a library that presents an Activity on top of another Activity. I am not working with Bundles or onCreate(). So...Activity A is running in the background and Activity B is running in the ...
1
vote
1answer
18 views

When are controller methods called in WD4A?

Can someone explain to me when methods are called in WD4A applications? Particularly methods that are defined in the application controller (and not the view (controllers)). I'm looking at some sample ...
1
vote
0answers
55 views

Generic method invocation using annotations

I am creating a web application and I am injecting a SystemManager interface in it. All of my business logic resides behind it and pages just have to request data from it. I would like to create a ...
0
votes
3answers
39 views

Java Android: Calling a Method

I'm building a list view android application. I want a message to be returned when a url is clicked from the list which is in an array telling the user if the site is offline or online. I am doing ...
1
vote
2answers
70 views

trouble calling a method in form 2 from a button click on form 1, vb.net

I have a program for creating a time sheet and when a saved time sheet is loaded by clicking a button on form 1 the data loads to form 2 and then calls a method in form 2 to print the data to form 3. ...
0
votes
2answers
54 views

lua: check subject of a method

obj = {} function obj:setName(name) print("obj: ", self) print("name: ", obj) end I create an object and assign a method like above. Now I call it this way: obj:setName("blabla") The ...
0
votes
1answer
21 views

Moving method outputs from a java class to HTML

I'm programming in Java and have a simple hello-world type class which can provide outputs to the console quite happily. What I would like to do is transfer the outputs of this, or a similar class, ...
0
votes
0answers
17 views

Uncaught TypeError: Cannot call method 'substr' of undefined

So I get the error above, here's what I have done var positions = new Array(); ... positions[i]=String.fromCharCode(adding_y) + "" + String.fromCharCode(adding_x); ... if ...
-1
votes
2answers
52 views

Having difficulty calling a method [closed]

I have a feeling that the answer's right under my nose, but my n00b-ness to Java has me chasing my tail. First part, I'm suppose to ask a user to in put two strings, compare them, and state the ...
1
vote
0answers
24 views

Starting a method in a thread, then changing the variables and starting a second thread of that method

im trying to use setLv1Sunflower() to start a new thread, which shows a plant grow where ever the player picks. after pressing the seed button, the player picks which placeHolder* that the plant will ...
3
votes
2answers
47 views

Not sure how to create a menu which uses methods from my other classes [closed]

so far I have created two classes, which I will show below I have tested both classes and they both seem to work. I now need to create a menu which will use the two classes I have created and allow ...

1 2 3 4 5 146