1 package org.eclipse.example.library;2 3 import java.util.List ;4 5 /**6 * @model7 */8 public interface Library9 {10 /**11 * @model12 */13 String getName();14 15 /**16 * @model type="Writer" containment="true"17 */18 List getWriters();19 20 /**21 * @model type="Book" containment="true"22 */23 List getBooks();24 }25