We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c5e92e7 commit 94c96cbCopy full SHA for 94c96cb
common/src/main/java/com/genexus/internet/MsgList.java
@@ -98,6 +98,11 @@ public void removeAllItems()
98
removeAllElements();
99
}
100
101
+ public boolean hasAny(String msgId)
102
+ {
103
+ return this.stream().anyMatch(item -> msgId.equals(item.getId()));
104
+ }
105
+
106
private short displayMode = 1;
107
108
public void setDisplaymode(short displayMode)
0 commit comments