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

org.pure4j.processor.Callback Maven / Gradle / Ivy

Go to download

Parses Byte-code to check the purity semantics defined using pure4j-core annotations

The newest version!
package org.pure4j.processor;

import org.pure4j.exception.Pure4JException;

public interface Callback {
	
	public void send(String s);
	
	public void registerError(Pure4JException optional);
	
	public void registerPure(String signature, Boolean interfacePure, Boolean implementationPure);
	
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy