You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
public class Product extends TestBaseClass<String> {
}
public abstract class TestBaseClass<T extends Serializable> {
private T id;
public T getId(){
return id;
}
public void setId(T id) {
this.id = id;
}
}
Error
The text was updated successfully, but these errors were encountered:
Code
Error
The text was updated successfully, but these errors were encountered: