aboutsummaryrefslogtreecommitdiffstats
path: root/tests/multiIncremental/pr117209/base/src/DefaultInterfaceImplementationRecipe.java
blob: b22ce5e66a353f0d1d67e3bd042fb1d7cc0602f5 (plain)
1
2
3
4
5
6
7
8
9
10
public aspect DefaultInterfaceImplementationRecipe
{
	declare parents : MyClass_ch16 implements MyInterface_ch16;
	
	// Declare the default implementation of the bar method
	public void MyInterface_ch16.bar(String name)
	{
		System.out.println("bar(String) called on " + this);
	}
}