mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-07-27 12:36:03 +07:00
12 lines
181 B
Plaintext
12 lines
181 B
Plaintext
/**
|
|
* created at Jan 22, 2002
|
|
* @author Jeka
|
|
*/
|
|
package packageA;
|
|
|
|
public class Server {
|
|
public void method() throws Exception {
|
|
System.out.println("Server.method");
|
|
}
|
|
}
|