package com.mycomp.myprod.server.common
class MyClass implements serializable{
private int myT;
public MyClass(int t){
myT=t;
}
public int getT(){
return myT;
}
}
———————————————————–
package com.mycomp.myprod.client.common
class MyClass implements serializable{
private int myT;
public MyClass(int t){
myT=t;
}
public int getT(){
return myT;
}
}
July 6, 2009 at 8:23 pm
[...] the two classes here. They’re identical in every meaningful way. The one on top belongs to a server application of [...]