We are about to switch to a new forum software. Until then we have removed the registration on this forum.
Often in my own Applets I use the method(String)
method for button callbacks. I learned about it a while back from a thread here. For example:
void handleClicks (ArrayList buttons) {
for (Button button : buttons) {
if (button.isPressed()) {
method(button.getCallback());
}
}
}
I wanted to know more about it. However, google hasn't been too helpful locating this due to the meta nature of the method. Is this from Java or Processing Core?
Answers
public void
methods w/ no parametersThank you!