View Javadoc

1   /*
2    * jcurl java curling software framework https://JCurl.mro.name Copyright (C)
3    * 2005-2009 M. Rohrmoser
4    * 
5    * This program is free software; you can redistribute it and/or modify it under
6    * the terms of the GNU General Public License as published by the Free Software
7    * Foundation; either version 2 of the License, or (at your option) any later
8    * version.
9    * 
10   * This program is distributed in the hope that it will be useful, but WITHOUT
11   * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
12   * FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
13   * details.
14   * 
15   * You should have received a copy of the GNU General Public License along with
16   * this program; if not, write to the Free Software Foundation, Inc., 59 Temple
17   * Place, Suite 330, Boston, MA 02111-1307 USA
18   */
19  
20  package org.jcurl.demo.tactics.old;
21  
22  import org.apache.commons.logging.Log;
23  import org.jcurl.core.log.JCLoggerFactory;
24  import org.jcurl.demo.tactics.old.ActionRegistry.JCAction;
25  import org.jcurl.demo.tactics.old.ActionRegistry.JCMenu;
26  
27  /**
28   * @author <a href="mailto:JCurl@mro.name">M. Rohrmoser </a>
29   * @version $Id$
30   */
31  @JCMenu("&Help")
32  public class MenuHelp {
33  
34  	private static final Log log = JCLoggerFactory.getLogger(MenuHelp.class);
35  
36  	@JCAction(title = "&About", idx = 10)
37  	public void helpAbout() {
38  		log.info("");
39  	}
40  }