io.codemodder.AIMetadataProvider Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of codemodder-base Show documentation
Show all versions of codemodder-base Show documentation
Base framework for writing codemods in Java
package io.codemodder;
import io.codemodder.codetf.CodeTFAiMetadata;
/** Marks a class so that it can provide {@link CodeTFAiMetadata} to its consumers. */
interface AIMetadataProvider {
/**
* @return the {@link CodeTFAiMetadata} describing how a class used an AI service.
*/
CodeTFAiMetadata codeTFAiMetadata();
}