package org.qi4j.tutorials.composites.tutorial8; import org.qi4j.api.injection.scope.State; import org.qi4j.api.property.Property; /** * This is the implementation of the HelloWorld * state interface. */ public class HelloWorldStateMixin implements HelloWorldState { @State private Property phrase; @State private Property name; public Property phrase() { return phrase; } public Property name() { return name; } }