Introduce Concerns/SideEffects/Constraints for Objects (ObjectsBuilder)
-----------------------------------------------------------------------

                 Key: QI-261
                 URL: http://issues.ops4j.org/browse/QI-261
             Project: Qi4j
          Issue Type: New Feature
            Reporter: Niclas Hedhman
            Assignee: Rickard Öberg


We could use subclassing to implement fragments for our POJO support 
(ObjectBuilder).

Example;

If we have this ordinary pojo,

public class Pojo
{
    private String name;

    public String getName()
    {
        return name;
    }
 
    public void setName( String name )
    {
        this.name = name;
    }
}

it should be possible to;

1. Annotate Concerns, SideEffects and Constraints just like Composites.
2. Use withConcerns() and withSideEffects in assembly.
3. Private Mixins being added for use by Concerns and SideEffects.


-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: 
http://issues.ops4j.org/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira

       

_______________________________________________
qi4j-dev mailing list
[email protected]
http://lists.ops4j.org/mailman/listinfo/qi4j-dev

Reply via email to