Package testPackage

Source Code of testPackage.UnresolvedInterface

package testPackage;

import testPackage.Dummy;
import undef.Undef;
import undef.Undef2;

/**
* Check class: org.eclipse.compare.CompareEditorInput
*
* @author mpinzger@tudelft.net
*
*/
public class UnresolvedInterface implements Undef, Undef2 {
    public UnresolvedInterface() {
    }
   
    public void aMethod(String name) {
        System.out.println(name);
    }
   
    public void foo(String name) {
        Dummy dummy = new Dummy();
        dummy.foo(name);
    }
}
TOP

Related Classes of testPackage.UnresolvedInterface

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.