return (property != null) ? property : "";
}
- public void setProperty(String property) {
+ public void setProperty(@Nullable String property) {
this.property = property;
}
}
}
- public void setSiid(Integer siid) {
+ public void setSiid(@Nullable Integer siid) {
this.siid = siid;
}
}
}
- public void setPiid(Integer piid) {
+ public void setPiid(@Nullable Integer piid) {
this.piid = piid;
}
return (fn == null || type == null || fn.isEmpty()) ? getChannel() : fn;
}
- public void setFriendlyName(String friendlyName) {
+ public void setFriendlyName(@Nullable String friendlyName) {
this.friendlyName = friendlyName;
}
return channel != null ? channel : "";
}
- public void setChannel(String channel) {
+ public void setChannel(@Nullable String channel) {
this.channel = channel;
}
}
}
- public void setChannelType(String channelType) {
+ public void setChannelType(@Nullable String channelType) {
this.channelType = channelType;
}
return type != null ? type : "";
}
- public void setType(String type) {
+ public void setType(@Nullable String type) {
this.type = type;
}
return unit != null ? unit : "";
}
- public void setUnit(String unit) {
+ public void setUnit(@Nullable String unit) {
this.unit = unit;
}
return rf != null && rf.booleanValue() && !getProperty().isEmpty();
}
- public void setRefresh(Boolean refresh) {
+ public void setRefresh(@Nullable Boolean refresh) {
this.refresh = refresh;
}
return channelCustomRefreshCommand != null ? channelCustomRefreshCommand : "";
}
- public void setChannelCustomRefreshCommand(String channelCustomRefreshCommand) {
+ public void setChannelCustomRefreshCommand(@Nullable String channelCustomRefreshCommand) {
this.channelCustomRefreshCommand = channelCustomRefreshCommand;
}
return channelGroup != null ? channelGroup : "";
}
- public void setChannelGroup(String channelGroup) {
+ public void setChannelGroup(@Nullable String channelGroup) {
this.channelGroup = channelGroup;
}
return transfortmation;
}
- public void setTransfortmation(String transfortmation) {
+ public void setTransfortmation(@Nullable String transfortmation) {
this.transfortmation = transfortmation;
}
return category;
}
- public void setCategory(String category) {
+ public void setCategory(@Nullable String category) {
this.category = category;
}
return tags;
}
- public void setTags(LinkedHashSet<String> tags) {
+ public void setTags(@Nullable LinkedHashSet<String> tags) {
this.tags = tags;
}
return (readmeComment != null) ? readmeComment : "";
}
- public void setReadmeComment(String readmeComment) {
+ public void setReadmeComment(@Nullable String readmeComment) {
this.readmeComment = readmeComment;
}