All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.viaoa.util.Test Maven / Gradle / Ivy

There is a newer version: 3.7.10
Show newest version
package com.viaoa.util;

public class Test implements TestInterface {


    public Test(){
        
    }
    
    void p(String msg) {
        System.out.println("done");
    }
    
    public void test()  {
        p("test here");
    }
    
    
    public static void main(String[] args) throws Exception {
        Test t = new Test();
        t.test();
        System.out.println("done");
    }
    
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy