I'm writing a class to add HTML textarea functionality to Processing's built-in
text(String, int, int, int, int) function. I'd like to subclass PGraphics so I can gain access to the protected fields
int[] textBreakStart and
int[] textBreakStop. I found
this forum post from 2010 where antiplastik explains the proper way to subclass PGraphics is to call:
I'd like to get the text inside the <p> tag that contains the biography. For some reason, though, I'm unable to get at the text inside the StandAloneElement. Each StandAloneElement sae.hasChildren() returns false, even though there must be a text node inside the <p> tag. What am I missing?