package org.qi4j.tutorials.composites.tutorial7; // START SNIPPET: solution /** * This interface contains only the behaviour * of the HelloWorld object. */ public interface HelloWorldBehaviour { String say(); } // END SNIPPET: solution