Loading...
Logo
Processing Forum

Library events?

in Library and Tool Development  •  9 months ago  
I've tried searching the forum for a solution to this but I'm stumped! I'm following the guidelines posted here to create library events:
http://code.google.com/p/processing/wiki/LibraryBasics#Adding_Your_Own_Library_Events
To create my own library events but for some reason my library can't find the 'fancyMethod' method in my applet? My code is taken straight from the example posted on the above page? My contructor looks like this:

    try {
      fancyEventMethod =
        myParent.getClass().getMethod("fancyEvent",
                                    new Class[] { Csoundo.class });
    } catch (Exception e) {
        System.out.println("no such method...");
      // no such method, or an error.. which is fine, just ignore
    }

But fancyEventMethod is always NULL? In my processing code I have the following method:

void fancyEvent() {
  println("works!!!");
}

I can't see why getClass().getMethod() is returning NULL when the method clearly exists? Any ideas?

 

Replies(2)

Re: Library events?

9 months ago
First of all the event must be public so

public void fancyEvent() {
  println("works!!!");
}


Second this method MUST be in the same class as the object myParent

Third the second parameter in the method call getMethod is an array of classes that are passed as parameters to the method. In your case fancyEvent has no parameters so pass an empty array or null i.e.

myParent.getClass().getMethod("fancyEvent",  new Class[0]);
or
myParent.getClass().getMethod("fancyEvent", null);

Re: Library events?

9 months ago
Thanks for the prompt reply, it's all working fine now :)