View Javadoc

1   package org.musicontroller.gui.components;
2   
3   import org.apache.tapestry.BaseComponent;
4   import org.musicontroller.core.Keywordbag;
5   
6   /**
7    * This tapestry component displays the contents of a keyword bag.
8    * @author deksels
9    * @version $Id: KeywordList.java,v 1.1 2010/03/16 18:55:42 varienaja Exp $
10   */
11  public abstract class KeywordList extends BaseComponent {
12  
13  	/**
14  	 * Getter for the required keyword bag parameter of the component.
15  	 * @return The keyword bag parameter.
16  	 */
17  	public abstract Keywordbag getKeywordbag();
18  	
19  }