1
vote
1answer
36 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 ...
3
votes
3answers
20 views

Uncaught typeerror: Object #<object> has no method 'method'

So here's the object 'playerTurnObj' function playerTurnObj(set_turn) { this.playerTurn=set_turn; function setTurn(turnToSet) { this.playerTurn=turnToSet; } function getTurn() ...
-1
votes
2answers
57 views

(object) is a Field but is used like a 'method'

When running this code i get the error: Error 1 'EPSInvoice_ServiceLibrary.EPS_Service.tr_bl' is a 'field' but is used like a 'method' It worked fine in VS.net but i'm converting to C#. Any ...
1
vote
4answers
46 views

Is there an accepted way to omit a parameter from a function/method?

Let's say (hypothetically) I have an object constructor MyObj, which has a method like this: MyObj.prototype.method = function(x, y){ x = x || this.x; //default value y = y || this.y; } ...
0
votes
1answer
33 views

Some questions about OOP

I have an object called clock. I have a method of said object called time. If I used this.propertyName inside my time method, this will give the property to my clock object, right? But what if there ...
3
votes
3answers
100 views

void method with arguments AND return value methods without arguments?

I'm developing software in C# and I remember that I read an article with the following statement: Design the methods of a class like this: use a void method with argument(s) in order to change ...
0
votes
0answers
35 views

Java create graphics object for drawing complex graphics from working method

I am somewhat new to java OO. Using the classic procedural aspects of Java are fairly straightforward, includingevent processing and even Swing. But I am having some trouble with objects.I have ...
0
votes
4answers
25 views

The ability to pass a method parameter as an object's state to be changed

I actually have two questions about how to do this correctly. I am fairly new to Java programming, and this makes what I want to do hard to do by myself and by not asking any questions. My first ...
0
votes
3answers
78 views

ArrayList error, Exception in thread “main” java.lang.NullPointerException

I'm very new to Java, and I seem to be getting some bizarre errors. I've looked everywhere for a solution, and all the solutions I've come across are identical to what I already have. I've written a ...
0
votes
0answers
49 views

Using <object> to Display PDF's As Opposed To One Of the Many SaaS Libraries

I have been developing a web application which has many documents (.pdf format) which must be embedded on the site. After doing a little research, there seem to be many "services" and/or "libraries" ...
6
votes
2answers
89 views

How to catch any method called on an object in python?

I'm looking for a pythonic solution on how to store a method which is called on an object right inside the object. Because in python, if I want to catch for example the abs() method, I will overload ...
1
vote
1answer
53 views

objective-c 2.0 Duplicate interface definition for class when defining private methods

i try to define simple private methods and properties in class but it gives me: Duplicate interface definition for class 'FBViewController' this is the .m file : #import "FBAppDelegate.h" #import ...
0
votes
1answer
38 views

Object doesn't support property or method 'dataTable' error

On my previous question, I have added the JQuery library and have fixed my style errors, however, I am now getting a new error: "Object doesn't support property or method 'dataTable'. Here is my ...
0
votes
0answers
16 views

Visual c : How can you declare an object and invoke its methos from a class defined in a diffrent Project in same solution?

Visual c++: How can you declare an object and invoke its methos from a class defined in a diffrent Project in same solution? I am trying to use Microsoft CppUnitTestFramework. I have two seperate ...
-2
votes
2answers
48 views

Why does method return 0?

Using the object and methods below, why does console.log(FizzBuzzPlus.getFizzBuzzCount(20)) print 0? var FizzBuzzPlus = { isFizzBuzzie: function(a) { if(a%5 === 0 || a%3 === 0) { ...
-1
votes
2answers
72 views

How to call function within java-script object [closed]

Not sure if I am doing this correctly but I am trying to teach myself how to use javascript objects. This is smaller example of what I am currently doing. var site = { account:{ ...
0
votes
1answer
35 views

Circles in circles fading out, creating a target

I want to create a graphics whereby circles are overlapped and their colour fades out, also the circles should have a white space in between each other, something similar to this: Here is how far ...
0
votes
2answers
104 views

Java variable doesn't increment, stays at 0

I have a sorting method and I want to count moves the method does, but the variable which should count doesn't count anything, I just get 0 when I read it. //En variabel för att man ska lagra info i ...
3
votes
8answers
102 views

How to Check if a class extends another

I have seen variants of this question but none of them really address my problem. Lets say I am building an army with classes. At the top of my Inheritance structure I have an abstract "Unit" class. ...
0
votes
0answers
110 views

object Object has no method 'fancybox'

Okay I've got everything working again! I edited the location of the fancybox.js to it's absolute (I.E. http://something.com/test/../../source/fancybox.js and I also declared a different DOCTYPE (dont ...
4
votes
4answers
89 views

How does numerical objects in Ruby exclude dot notation?

I notice that dot notation is required in a majority of the cases to call an object's method. I assume the dot is used to connect the object with the method name, but in arithmetic operations, there ...
0
votes
3answers
52 views

How can I find who call my method in a program? [duplicate]

I have a java class and it has some methods but they need some Objects from other classes. there are many classes in this program ,and I want to know how can I find in Eclipse that Who(From which ...
1
vote
2answers
45 views

Creating a methods who's parameters are a class and a generic ArrayList

Im my program I have copy and pasted code (an obvious no-no) because I haven't figured out how to pass the parameters I want to this method: public String collectionToFormattedString() { String ...
0
votes
2answers
63 views

How do I write and delete Objects from a RandomAccessFile?

I am currently working on a school project for which I need to save my data to a RandomAccessFile. I figured that this is by far not the most efficient way, but I have to do it. Note: I have to use ...
-1
votes
3answers
42 views

Calling a method in a separate class

First, I have if (playerCommand.startsWith("yell")) { Yell(); } In a class titled "commands.java" This class handles input commands. I want to have the method for this specific ...
1
vote
3answers
82 views

Method that inputs string outputs color object c#

Im trying to create a method in C# that inputs a string value from a combo box and returns a color object. I've established how to do so with if/else statements in order to compare the string and ...
1
vote
2answers
48 views

Java Concept Confusion : Objects and Primitive Types

I am really confused about this concept: /* Example with primitive data type */ public class Example1 { public static void main (String[] args){ int a = 1; System.out.println("a is " + a); ...
-1
votes
3answers
66 views

Get a static java method to return highest variable value

In my program I declared a static variable: private static int nextID = 0; Which is used in my constructor Vehicle() { idNum = nextID++ } Basically, what this is doing is ensuring that ...
0
votes
1answer
61 views

Unable to access ArrayList object method

I'm trying to write a program that randomly picks 3 countries from a pool, then outputs them as a string. These countries will receive gold, silver, and bronze in order. The method olympicResults will ...
0
votes
1answer
54 views

Using a function inside a class

I am trying to make a receipt program by making a list of ware objects. I do this by makng a class and function like: class ware(object): def __init__(self, code, name, price, quantity): ...
1
vote
2answers
60 views

How do I make a method that uses the object name in c#?

Say I have a class called Enabler I make an instance of the class like I'd normally do (in semi-pseudo c# code) bool cond; Enabler enable = new Enabler(cond); the problem arises when I call the ...
-1
votes
2answers
37 views

How to use data stored in a variable located in a seperate file?

I have two files. One file counts the number of listed events I have in a text file and stores the number of events into the variable "count". I want to then use the value in this variable to do ...
1
vote
4answers
56 views

Is there a difference between calling a method from within a class' method code or on an instance of the class?

I have a piece of code here and I'm not sure what a couple of commands do: //this bit is the body of the main method //lots of stuff omitted project frame = new project(); frame.createGUI(); private ...
0
votes
0answers
32 views

Error while running the driver program

Error while running the driver program: Exception in thread "main" java.lang.NullPointerException at Exercise.toString(Exercise.java:78) at java.lang.String.valueOf(String.java:2854) at ...
-1
votes
3answers
65 views

Compiler error “incompatible types”

I'm getting a compiler error: Exercise.java:47: error: incompatible types Time endTime = startTime.addMinutes(minutes); ^ required: Time found: ...
0
votes
5answers
65 views

Calling methods on an object instantiated in a previous method (Java)

To put it simply, I have the following code: public void dance() { CartoonFigure dancer = new CartoonFigure("rico", 300, 300); danceStepTwo(); danceStepOne(); } public void danceStepOne() { ...
0
votes
1answer
45 views

Called Method is empty, beginner jGrasp

public class AppleOrchard { public static void main(String [] args) { System.out.println("Rick..."); BushelBasket rick = new BushelBasket(0); rick.print(); rick.pick(11); ...
0
votes
1answer
66 views

Accessing an Objects values Java

Okay so I'm creating a simple flight booking system. I've spent a fair bit of time debugging and now even the simplest things are stumping me. I have an interface which looks close to: public class ...
0
votes
3answers
70 views

pass variable to javascript method

I am having trouble passing values to methods of objects. I want to be able to pass a variable to an objects method when I call it however I cant seem to work out how this is done. NOTE: I need to ...
-1
votes
1answer
28 views

Calling a method from an object at the START of a Queue

Within my Driver class: for (systemClock = 0; systemClock < 200; systemClock = (systemClock + 1)){ if(((inputQueue.query()).arrivalTime()) == systemClock) ...
1
vote
2answers
28 views

Storing Javascript Objects in Another Object Dynamically

Here's what I'm trying to accomplish. I'm creating objects dynamically and I want to add them to a "master container" object. I'm currently using arrays for containers, but sometimes I'd like to ...
2
votes
6answers
106 views

Useful or a waste of memory?

In my class I we were assigned a problem to create a 'factorizer' application that calculates the prime factorization of any number up until a really large number. He gave us a Number.java class which ...
2
votes
2answers
56 views

Javascript Object Passed Into Method Is A String

I'm building a phonegap project using jQuery mobile. I have a javascript object that I'm iterating through. Currently the problem is this: Below is a method in my model object. It is self ...
0
votes
2answers
122 views

Calling a method from another class with an array of objects

Im getting the null pointer exception error and i dont understand what is wrong. public static void main(String[] args) { CDlist CD[] = new CDlist[5]; CD[0].add(); } That is my main, very ...
0
votes
2answers
48 views

Making a new class for a matrix in R

I have some functions which take very specific matrices with specific information loaded in using another function I've made. Currently the matrices the function accepts are the normal R matrix type. ...
-1
votes
7answers
103 views

When compiling, I receive the error: “unreachable statement”. How can I fix the issue?

public double Convertir(double Number) { Number = nombre; while ((Number - 365) >= 0) { annee += 1; //this calculates the number of years } return annee; double ...
0
votes
2answers
44 views

Java concatenating various methods (not the method to concatenate strings)

When I write a class with several voids: public class MyObj { public void doSomething() { /* does something */ } public void doSomethingElse() { /* does something else */ } ... } I can ...
2
votes
3answers
71 views

how to query a sub object of an object with linq

I have a Customer object. The Customer object may contain multiple Address objects. I would like to set up a method on the Customer object to GetCity for example. Now, each Address object has an ...
0
votes
0answers
11 views

How to intercept unknown (subclass) methods?

Suppose the user creates a class UserClass. (in pseudocode) class UserClass { method userMethod(args) { // do user stuff with args // return something } Consider userobj as ...
0
votes
1answer
59 views

PHP 5.4 new object -> call method

I thought in php 5.4 this was possible (new object())->method(); But I am having trouble when both the object and methods are stored in a classes variables I have tried the following, new ...

1 2 3 4 5 7