[jbosstools-issues] [JBoss JIRA] (JBIDE-17976) Problem markers are not removed on related Parameter Aggregators

Xavier Coulon (JIRA) issues at jboss.org
Fri Jul 25 11:13:30 EDT 2014


Xavier Coulon created JBIDE-17976:
-------------------------------------

             Summary: Problem markers are not removed on related Parameter Aggregators
                 Key: JBIDE-17976
                 URL: https://issues.jboss.org/browse/JBIDE-17976
             Project: Tools (JBoss Tools)
          Issue Type: Feature Request
          Components: webservices
    Affects Versions: 4.2.0.Beta3
            Reporter: Xavier Coulon


Let's have those 2 classes:

{code}
@Path("/rest")
public class RestService {

	@POST
	@Path("{id}")
	public void post(@BeanParam BeanClass bean) {
		
	}	
}
{code}
and
{code}
public class BeanClass {
	
	@PathParam("id") 
	private Integer id;
	
}
{code}

if the users changes {{@Path("{id}")}} to {{@Path("{i}")}} in the {{RestService}}, a problem marker will be set on {{@PathParam("id") }} in {{BeanClass}}, which is fine.

If the user changes {{@Path("{i}")}} back to {{@Path("{id}")}}, the problem marker is not removed :(



--
This message was sent by Atlassian JIRA
(v6.2.6#6264)


More information about the jbosstools-issues mailing list