[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Newsgroup Home]
|
[news.eclipse.modeling.gmf] How to integrate "DiagramActionBarContributor" into "MultiPageEditorActionBarContributor"
|
I need to integrate my XXXDiagramEditor into XXMultiPageEditor, but the
question was How to integrate "DiagramActionBarContributor" into
"MultiPageEditorActionBarContributor"
The XXXDiagramActionBarContributor had only two method:
public class XXXDiagramActionBarContributor extends
DiagramActionBarContributor {
/**
* @generated
*/
protected Class getEditorClass() {
return Xpdl2DiagramEditor.class;
}
/**
* @generated
*/
protected String getEditorId() {
return Xpdl2DiagramEditor.ID;
}
}