package foo; public class Bar { protected int id; /** * Method ouba, take bananas and return thousand of bananas ! * @param bananas are required for good working. * @return thousand of thems. */ public int ouba(int bananas){ int oubaOuba = 100*bananas; return oubaOuba + bananas; } /** * Method oubaOuba makes marmelade from bananas. * @param bananas are the thousands of bananas needed for marmelade. * @return banana marmelade. */ public int oubaOuba(int bananas){ return bananas/10; } }