net.librec.recommender.item.AbstractContext Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of librec-core Show documentation
Show all versions of librec-core Show documentation
A repackaged librec-core fork
The newest version!
package net.librec.recommender.item;
/**
* Created by wkq on 19/05/2017.
*/
public class AbstractContext {
private int userIdx;
public AbstractContext(int userIdx){
this.userIdx = userIdx;
}
public int getUserIdx() {
return userIdx;
}
public void setUserIdx(int userIdx) {
this.userIdx = userIdx;
}
}