com.facebook.swift.codec.metadata.ClassCommentProvider Maven / Gradle / Ivy
The newest version!
package com.facebook.swift.codec.metadata;
import java.lang.reflect.Method;
import com.google.common.collect.ImmutableList;
/**
* @deprecated replaced by common-base2 net.gdface.utils.ClassCommentProvider
*
*/
public interface ClassCommentProvider {
ImmutableList commentOfClass();
ImmutableList commentOfMethod(Method method);
ImmutableList commentOfField(String name);
}