<HTML> <HEAD> <TITLE>Using Abstract Classes</TITLE> </HEAD> <BODY> <H1>Using Abstract Classes</H1> <%! [Link].
JspWriter localOut; abstract class a { abstract String getText() throws [Link]. IOException; public void printem() throws [Link] ception { [Link](getText()); } } class b extends a { String getText() throws [Link] on { return "Hello from JSP!"; } } %> <% localOut = out; b bObject = new b();
[Link](); %> </BODY> </HTML>