/* * To change this template, choose Tools | Templates * and open the template in the editor. */ package com.testproject.testclasses; /** * * @author Joao */ public class MidClass extends UpClass { String field3; public int abc() { return 0; } public void desce() { System.out.println("Desce"); } public String desce2() { return "desce2"; } }