Is there a way to replace some code with custom (shorter) words?
Example: I don't want to type the words below all the time, but I want to type a shorter word. The /compiler/ pre-processor will replace my custom words with the originals.
protected void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
processRequest(request, response);
}
I want to write something like this instead:
protected void doGet(banana, apple) foo, bar {
processRequest(request, response);
}