All Downloads are FREE. Search and download functionalities are using the official Maven repository.

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);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy