import org.projetorox.rox.graphapi.analysis.AbstractAnalysisResult;
import org.projetorox.rox.graphapi.analysis.result.IIntegerResult;

public class CountNodesAnalysisResult extends AbstractAnalysisResult implements
		IIntegerResult {

	Integer result;	
	public void setResult(Integer r) {
		this.result = r;

	}

	public Integer getResult() {
		return this.result;
	}

}
