You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
news-feed/2.8/src/main/java/org/gcube/portlets/user/newsfeed/client/event/EditCommentEvent.java

44 lines
1.1 KiB
Java

package org.gcube.portlets.user.newsfeed.client.event;
import org.gcube.portal.databook.shared.Comment;
import org.gcube.portlets.user.newsfeed.client.ui.TweetTemplate;
import com.google.gwt.event.shared.GwtEvent;
import com.google.gwt.user.client.ui.HTMLPanel;
public class EditCommentEvent extends GwtEvent<EditCommentEventHandler> {
public static Type<EditCommentEventHandler> TYPE = new Type<EditCommentEventHandler>();
private TweetTemplate owner;
private Comment edited;
private HTMLPanel commentPanel;
public TweetTemplate getOwner() {
return owner;
}
public Comment getCommentInstance() {
return edited;
}
public HTMLPanel getCommentPanel() {
return commentPanel;
}
public EditCommentEvent(TweetTemplate owner, Comment editedComment, HTMLPanel commentPanel) {
this.owner = owner;
this.edited = editedComment;
this.commentPanel = commentPanel;
}
@Override
public Type<EditCommentEventHandler> getAssociatedType() {
return TYPE;
}
@Override
protected void dispatch(EditCommentEventHandler handler) {
handler.onEditComment(this);
}
}