History | Log In     View a printable version of the current page.  
Issue Details (XML | Word | Printable)

Key: IDEADEV-13684
Type: Bug Bug
Status: Open Open
Priority: Major Major
Assignee: Maxim Shafirov
Reporter: Alexander Chernikov
Votes: 0
Watchers: 0
Operations

If you were logged in you would be able to see more operations.
IDEA: Development

JSP: overrides / implements decorators are missed within JSP declaration

Created: 23 Jan 07 19:21   Updated: 06 Nov 08 23:25
Component/s: Editor. Error Highlighting, J2EE.JSP
Fix Version/s: Undefined

Original Estimate: Unknown Remaining Estimate: Unknown Time Spent: Unknown

Build: 6,658


 Description  « Hide
The following JSP code in 6148 gets overrides / implements decorations on the left editor's gutter, with ability of navigation.
(Method jspInit() implements javax.servlet.jsp.JspPage.jspInit(); and Second.meth() overrides First.meth().)
In Selena 6658 there are no decorations. At the same time "missing @Overrides annotation" inspection is reported for Second.meth() - so, overriding is resolved somehow.
<%@ page contentType="text/html;charset=UTF-8" language="java" %>
<%!
	public void jspInit() {
	}

	class First {
		public void meth() {}
	}

	class Second extends First {
		public void meth() {}
	}
%>
<html>
  <head><title>Simple jsp page</title></head>
  <body>Place your content here</body>
</html>

Major, since this is a regression from 6.0.x.



 All   Comments   Work Log   Change History      Sort Order:
There are no comments yet on this issue.