Skip to content
Snippets Groups Projects
Select Git revision
  • 825efef0470f1f06b2f0c8cf07a0af669287f3cb
  • master default
  • labcomm2014_tc31
  • labcomm2014
  • js
  • java_dyn_msg_dec
  • anders.blomdell
  • typeref
  • pragma
  • compiler-refactoring
  • labcomm2013
  • v2014.1
  • v2014.0
  • v2013.0
14 results

TestClient.java

Blame
  • Forked from Anders Blomdell / LabComm
    Source project has a limited visibility.
    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);
    	}
    
    }