TreeAction.java |
/* * JBoss, the OpenSource J2EE webOS * * Distributable under LGPL license. * See terms of license at gnu.org. */ package org.jboss.console.manager.interfaces; /** * Tag interface to represent a generic action that can be handled by a specific * tree browser profile * * @see * * @author <a href="mailto:sacha.labourey@cogito-info.ch">Sacha Labourey</a>. * @version $Revision: 1.4 $ * * <p><b>Revisions:</b> * * <p><b>December 16, 2002 Sacha Labourey:</b> * <ul> * <li> First implementation </li> * </ul> */ public interface TreeAction extends java.io.Serializable { }
TreeAction.java |