![JAR search and dependency download from the Maven repository](/logo.png)
com.viaoa.util.Test Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of oa-core Show documentation
Show all versions of oa-core Show documentation
Object Automation library
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