/**
* Copyright (C) 2001-2006 France Telecom R&D
*/
package org.objectweb.speedo.pobjects.inheritance.filtered.jdo2.hid;
public class C extends A {
String cf1;
String cf2;
public C(String id) {
super(id);
}
public String getCf1() {
return cf1;
}
public void setCf1(String cf1) {
this.cf1 = cf1;
}
public String getCf2() {
return cf2;
}
public void setCf2(String cf2) {
this.cf2 = cf2;
}
}
|