Skip to content
Snippets Groups Projects
Select Git revision
1 result Searching

LabCommParser.parser

Blame
  • TestObject.java 398 B
    package labcommTCPtest.server;
    
    /**
     * The service object to be accessed remotely via a LabComm channel
     * 
     */
    public class TestObject {
    
    	/**
    	 * A test method. The matching LabComm description is in test.lc
    	 * 
    	 * @param x
    	 * @param y
    	 * @param t
    	 * @param d
    	 */
    	public void foo(int x, int y, long t, double d) {
    		System.out.format("TestObject.foo(%d, %d, %d, %f)\n", x, y, t, d);
    	}
    
    }