I am overriding the getActions method in the Java based framework JHotDraw, an open source project hosted here. The method getActions creates a right click context menu on Figure in the Drawingview. I can correctly add addidtional context menu options using the code below. I need to know how to add a sub menu to the context menu.
@Override
public Collection<Action> getActions(Point2D.Double p) {
Collection<Action> popupMenu = new ArrayList<Action>();
popupMenu.add(new AbstractAction("add Context Option 1") {
public void actionPerformed(ActionEvent event) {
preformThisMethod("params");
}
});
popupMenu.add(new AbstractAction("add Context Option 2") {
public void actionPerformed(ActionEvent event) {
preformThisMethod("params");
}
});
// How to add a sub menu to the context menu?
return popupMenu;
}
JPopupMenuaproach. I have to use the framework approaches {Homework Requirement}. I'm in a software engineering class with loose requirements about HOW we achieve functionality, so long as we utilize the JHotDraw framework. This means I need to override certain methods, likegetActions. I'm not even sure if it is possible to create a submenu using thisActioncollection approach of the JHotDraw framework, it just would be an exceedingly convenient and intuitive way to implement the desired functionality. – awashburn Nov 9 '12 at 22:37