[
https://issues.apache.org/jira/browse/ISIS-1305?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=15194847#comment-15194847
]
ASF subversion and git services commented on ISIS-1305:
-------------------------------------------------------
Commit 2a5d6de5223d7f78b284b4f8879a89e51b9069f0 in isis's branch
refs/heads/master from [~danhaywood]
[ https://git-wip-us.apache.org/repos/asf?p=isis.git;h=2a5d6de ]
ISIS-1305: mixed-in collections and properties now derive name correctly if
called '$$'
Also:
- deleting old version of DomainObjectContainerDefault, accidentally committed
previously
- tiny tweak to btn class in simpleapp.
> For collections contributed from mixins, the name is empty (presumably null
> or "")
> ----------------------------------------------------------------------------------
>
> Key: ISIS-1305
> URL: https://issues.apache.org/jira/browse/ISIS-1305
> Project: Isis
> Issue Type: Bug
> Affects Versions: 1.11.0
> Reporter: Dan Haywood
> Assignee: Dan Haywood
> Fix For: 1.12.0
>
>
> This seems to be a regression; in 1.10.0 it was working.
> This is for the "$$" action for a mixin called XXX_yyy, where the name of the
> contributed collection is meant to be "yyy", eg:
> {code}
> @Mixin
> public class SimpleObject_others extends AbstractSubscriber{
> private final SimpleObject simpleObject;
> public SimpleObject_others(final SimpleObject simpleObject) {
> this.simpleObject = simpleObject;
> }
> @Action(semantics = SemanticsOf.SAFE)
> @ActionLayout(contributed = Contributed.AS_ASSOCIATION)
> @CollectionLayout(defaultView = "table")
> public List<SimpleObject> $$() {
> return simpleObjects.listAll();
> }
> @Inject
> SimpleObjects simpleObjects;
> }
> {code}
--
This message was sent by Atlassian JIRA
(v6.3.4#6332)