Changes between Version 5 and Version 6 of ModelNavigator


Ignore:
Timestamp:
Mar 5, 2008, 5:18:53 PM (16 years ago)
Author:
anonymous
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • ModelNavigator

    v5 v6  
    2424  2. The method {{{getContributorId()}}} must return the ID that is returned by {{{getContributorId()}}} of your XXXDiagramEditor class.
    2525  3. Implement the method {{{getAdapter}}} similar to the following:
    26 {{{public Object getAdapter(Class type) {
     26{{{
     27public Object getAdapter(Class type) {
    2728    if (type == IPropertySheetPage.class) {
    2829       return new PropertiesBrowserPage(this);
    2930    }
    3031    return super.getAdapter(type);
    31 }}}}
     32}
     33}}}