org.alfasoftware.astra.example.target.FooBarCaller Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of astra-example Show documentation
Show all versions of astra-example Show documentation
Astra is a Java tool for analysing and refactoring Java source code. This module contains example uses.
package org.alfasoftware.astra.example.target;
public class FooBarCaller {
private final FooBarInterface fooBarInterface;
FooBarCaller(FooBarInterface fooBarInterface){
this.fooBarInterface = fooBarInterface;
}
void doThing(){
fooBarInterface.doFoo();
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy