I am implementing a plugin for content assist in xml. In the implementation I am loading the classes of a project as,
URLClassLoader classLoader = new URLClassLoader(urls,Thread.currentThread().getContextClassLoader());
But when i make changes in the classes, and try for content assist, it still loading the previous class.
Does there any way to load new modified classes?