-
Notifications
You must be signed in to change notification settings - Fork 132
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
NestedSlots for presenters.. #813
Comments
As the framework is implemented it doesn't work, one example is the class RevealContentHandler that has explicit code for NestedSlot... it should be IsSlot? |
Tried this but didnt work either, don't know why.. |
this registry only works for NestedSlots.. |
In the past we could register new Slots with the tag @ContentSlot, now it's closed.. |
Here we can see again the use of classes instead of interfaces why is the method that uses interfaces hidden?? |
Shouldn't the following classes exist? Or in other words SingleSlot, PermanentSlot, Slot and OrderedSlot for Presenters that extends from GwtEvent.Type<RevealContentHandler<?>> like NestedSlots.
public class TypedNestedSlot<T extends Presenter>
extends GwtEvent.Type<RevealContentHandler<?>>
implements IsSingleSlot, RemovableSlot {
}
public class TypedNestedMultiSlot<T extends Presenter>
extends GwtEvent.Type<RevealContentHandler<?>>
implements RemovableSlot {
}
The text was updated successfully, but these errors were encountered: