You used illegal double quotes in 2 argument lists.
pagecontext.getOut().write()
and
throw new JspException()
They seem to be extended ASCII double quotes, probably from Microsoft Word, or UTF-8 encoding. They won't work strings in argument lists!
Also, in your setParent() method, the assignment is incorrect. You are assigning it to a variable which isn't declared. It should be this: pagecontext=p;