📄 mutableprofilemgrmodel.java
字号:
/**/package org.impact.stars.organizationmd.profilemgr.model;import org.impact.stars.organizationmd.profilemgr.model.ExplicitInformation;import org.impact.stars.organizationmd.profilemgr.model.ProfileMgrModel;/** * MutableProfileMgrModel is a class which models personal preferences data * for a particular user with the additional facility to change the data */public class MutableProfileMgrModel extends ProfileMgrModel { /** * Class constructor specifying the user and preference information. * @param userId a string which represents the id of this user * @param eInfo an <code>ExplicitInformation</code> structure * containing the personal preferences of this user */ public MutableProfileMgrModel(String userId, ExplicitInformation eInfo) { super(userId, eInfo); } /** * Sets the string which represents the id of this user. * @param the string representing this user id */ public void setUserId(String id) { this.userId = id; } /** * Sets the <code>ExplicitInformation</code> structure which contains the * personal preferences for this user. * @param the <code>ExplicitInformation</code> object for this user */ public void setExplicitInformation(ExplicitInformation ein) { this.eInfo = ein; }}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -