forked from demo/example
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.
28 lines
461 B
28 lines
461 B
6 years ago
|
package com.fr.plugin.design;
|
||
|
|
||
|
import com.fr.design.menu.ShortCut;
|
||
|
|
||
|
import javax.swing.JPopupMenu;
|
||
|
import javax.swing.JToolBar;
|
||
|
|
||
|
public class ShortCutImpl extends ShortCut {
|
||
|
@Override
|
||
|
public void intoJPopupMenu(JPopupMenu jPopupMenu) {
|
||
|
|
||
|
}
|
||
|
|
||
|
@Override
|
||
|
public void intoJToolBar(JToolBar jToolBar) {
|
||
|
|
||
|
}
|
||
|
|
||
|
@Override
|
||
|
public void setEnabled(boolean b) {
|
||
|
|
||
|
}
|
||
|
|
||
|
@Override
|
||
|
public boolean isEnabled() {
|
||
|
return true;
|
||
|
}
|
||
|
}
|