blob: 0ae807f3805f520ebf10a098dd2ed2c0d1145f62 [file] [log] [blame]
public class SelfParams {
private int myVar = 0;
private int myProp = 0;
public int getProp() {
return myProp;
}
public void setProp(int prop) {
myProp = prop;
}
public void copy(SelfParams sp) {
this.myVar = sp.myVar;
this.myProp = sp.getProp();
}
}
class Usage {
SelfParams s = new Self<caret>Params();
}