demo.Foo Maven / Gradle / Ivy
package demo;
/*
* To change this template, choose Tools | Templates
* and open the template in the editor.
*/
/**
*
* @author albert_kurucz
*/
public class Foo extends Bar {
public void fello() {
System.out.println("hello Foo");
}
public String getResult() {
return "Barbar";
}
}