Closed denis-anisimov closed 5 years ago
Another issue with the current name generation is that it is based on the simple class name, causing clashes in the following case:
public class PortletView1 extends Div {
public static class Portlet extends VaadinPortlet<PortletView1> {}
...
}
public class PortletView2 extends Div {
public static class Portlet extends VaadinPortlet<PortletView2> {}
...
}
Both portlet WCs will have tags portlet-portlet
.
I've defined
VaadinIPCPortlet
class. It broke the app with the exception:The logic which derive the portlet tag name should be fixed.