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

spoon.examples.tracing.src.Tests Maven / Gradle / Ivy

The newest version!
package spoon.examples.tracing.src;

import spoon.examples.tracing.annotation.Log;

public class Tests {

	@Log
	public void m1(String s, int i, int j) {
		for (int k = i; k < j; k++) {
			System.out.println(s);
		}
	}

	@Log
	public void m2() {
	}

	@Log
	public void m1(String s, int i, int j, int l, int m, int n, int o) {
		for (int k = i; k < j; k++) {
			System.out.println(s);
		}
	}

	@Log
	public void m1bis(String s, int i, int j, int l, int m, int n, int o) {
		for (int k = i; k < j; k++) {
			System.out.println(s);
		}
	}

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy