CommentCollection.java 724 Bytes
/*
 * Decompiled with CFR 0_118.
 * 
 * Could not load the following classes:
 *  aQute.bnd.annotation.ConsumerType
 *  org.apache.sling.api.resource.Resource
 */
package com.adobe.granite.comments;

import aQute.bnd.annotation.ConsumerType;
import com.adobe.granite.comments.Comment;
import java.util.Calendar;
import java.util.List;
import org.apache.sling.api.resource.Resource;

@ConsumerType
public interface CommentCollection<C extends Comment> {
    public C addComment(String var1, String var2, String var3);

    public List<C> getCommentList();

    public Calendar getCreated();

    public Calendar getLastModified();

    public String getPath();

    public Resource getTarget();

    public void remove();
}