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.
23 lines
391 B
23 lines
391 B
5 years ago
|
package com.fr.design.mainframe;
|
||
|
|
||
|
/**
|
||
|
* @Author: Yuan.Wang
|
||
|
* @Date: 2020/10/27
|
||
|
*/
|
||
|
public class JTemplateActionListenerAdapter implements JTemplateActionListener {
|
||
|
@Override
|
||
|
public void templateOpened(JTemplate<?, ?> jt) {
|
||
|
|
||
|
}
|
||
|
|
||
|
@Override
|
||
|
public void templateSaved(JTemplate<?, ?> jt) {
|
||
|
|
||
|
}
|
||
|
|
||
|
@Override
|
||
|
public void templateClosed(JTemplate<?, ?> jt) {
|
||
|
|
||
|
}
|
||
|
}
|