You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
381 B
19 lines
381 B
package com.fr.design.fun; |
|
|
|
import com.fr.stable.fun.mark.Immutable; |
|
import java.awt.event.MouseEvent; |
|
|
|
/** |
|
* @author hades |
|
* @version 10.0 |
|
* Created by hades on 2020/12/14 |
|
*/ |
|
public interface TemplateTreeDefineProcessor extends Immutable { |
|
|
|
String XML_TAG = "TemplateTreeDefineProcessor"; |
|
|
|
int CURRENT_LEVEL = 1; |
|
|
|
void rightClickAction(MouseEvent mouseEvent); |
|
|
|
}
|
|
|