本文整理了Java中org.dataconservancy.ui.model.DataItem.getContactInfos()
方法的一些代码示例,展示了DataItem.getContactInfos()
的具体用法。这些代码示例主要来源于Github
/Stackoverflow
/Maven
等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。DataItem.getContactInfos()
方法的具体详情如下:
包路径:org.dataconservancy.ui.model.DataItem
类名称:DataItem
方法名:getContactInfos
[英]Get the list of contact info (other than creators) for the dataset
[中]获取数据集的联系人信息列表(创建者除外)
代码示例来源:origin: org.dataconservancy.model/dcs-ui-model
/**
* Constructs a DataItem, initializing this state with {@code toCopy}.
*/
public DataItem(DataItem toCopy) {
this.name = toCopy.getName();
this.description = toCopy.getDescription();
this.id = toCopy.getId();
this.depositorID = toCopy.getDepositorId();
this.depositDate = toCopy.getDepositDate();
this.files = toCopy.getFiles();
this.parentId = toCopy.getParentId();
this.alternateIds = toCopy.getAlternateIds();
this.citableLocator = toCopy.getCitableLocator();
this.contentModel = toCopy.getContentModel();
this.creators = toCopy.getCreators();
this.contactInfos = toCopy.getContactInfos();
this.createdDate = toCopy.getCreatedDate();
this.modifiedDate = toCopy.getModifiedDate();
}
代码示例来源:origin: org.dataconservancy.dcs/dcs-ui-model
/**
* Constructs a DataItem, initializing this state with {@code toCopy}.
*/
public DataItem(DataItem toCopy) {
this.name = toCopy.getName();
this.description = toCopy.getDescription();
this.id = toCopy.getId();
this.depositorID = toCopy.getDepositorId();
this.depositDate = toCopy.getDepositDate();
this.files = toCopy.getFiles();
this.parentId = toCopy.getParentId();
this.alternateIds = toCopy.getAlternateIds();
this.citableLocator = toCopy.getCitableLocator();
this.contentModel = toCopy.getContentModel();
this.creators = toCopy.getCreators();
this.contactInfos = toCopy.getContactInfos();
this.createdDate = toCopy.getCreatedDate();
this.modifiedDate = toCopy.getModifiedDate();
}
代码示例来源:origin: org.dataconservancy.model/dcs-ui-model-builder-xstream
List<ContactInfo> contactInfos = dataItemSource.getContactInfos();
if (contactInfos != null && !creators.isEmpty()) {
writer.startNode(E_CONTACT_INFOS);
代码示例来源:origin: org.dataconservancy.dcs/dcs-ui-model-builder-xstream
List<ContactInfo> contactInfos = dataItemSource.getContactInfos();
if (contactInfos != null && !creators.isEmpty()) {
writer.startNode(E_CONTACT_INFOS);
内容来源于网络,如有侵权,请联系作者删除!