All Downloads are FREE. Search and download functionalities are using the official Maven repository.

java.com.generationjava.swing.PopupTreeNode Maven / Gradle / Ivy

The newest version!
package com.generationjava.swing;

import java.awt.event.ActionEvent;

public interface PopupTreeNode {

    public PopupTreeNode getPopupParent();

    public void setPopupParent(PopupTreeNode parent);

    public boolean isPopupRoot();

    public String getName();

    public void notifyAction(ActionEvent event);

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy