andi-huber commented on code in PR #1086:
URL: https://github.com/apache/isis/pull/1086#discussion_r963861390
##########
regressiontests/stable/src/main/java/org/apache/isis/testdomain/model/good/ProperElementTypeVm.java:
##########
@@ -51,4 +54,45 @@ public class ProperElementTypeVm {
@Collection
@Getter @Setter private List<? extends ElementTypeConcrete> concreteColl2;
+ // specialization over Set<ElementTypeInterface> in super
+ @Override
+ public SortedSet<ElementTypeInterface> getSetOfInterfaceType() {
+ return Collections.emptySortedSet();
+ }
+
+ // specialization over Set<? extends ElementTypeConcrete> in super
+ @Override
+ public SortedSet<? extends ElementTypeConcrete> getSetOfConcreteType() {
+ return Collections.emptySortedSet();
+ }
+
+ @Override
+ public Iterable<ElementTypeInterface> getIterableOfInterfaceType() {
+ // TODO Auto-generated method stub
+ return null;
+ }
+
+ @Override
+ public Iterable<? extends ElementTypeConcrete> getIterableOfConcreteType()
{
+ // TODO Auto-generated method stub
+ return null;
+ }
+ //FIXME add Can support
Review Comment:
switch on once all tests are green
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]