| SeparatorTreeNodeMenuEntry.java |
/*
* JBoss, the OpenSource J2EE webOS
*
* Distributable under LGPL license.
* See terms of license at gnu.org.
*/
package org.jboss.console.manager.interfaces.impl;
import org.jboss.console.manager.interfaces.TreeNodeMenuEntry;
/**
* Simple "tag" class that can be used to put a line separator
* in the popup menu.
*
* @see org.jboss.console.manager.interfaces.TreeNodeMenuEntry
*
* @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 class SeparatorTreeNodeMenuEntry
implements TreeNodeMenuEntry
{
public SeparatorTreeNodeMenuEntry() {}
}
| SeparatorTreeNodeMenuEntry.java |