The relationship among adapterfactory, adapter, adaptee and Viewer

Source: Internet
Author: User

Let's pick the treeviewer as the case:

 

If you want to show a tree in a dialog, you 'd better use the treeviewer instance.

But how to fill in treeviewer, implementing this requires you have to do exactly steps as follows:

1. You need a object used to fill in the treeviewer, and this object have a reference to the information showed in the treeviewer.

Here we call this objectInputobject

2. Set the inputobject into the treeviewer through invoking the MethodSetinput():

treeViewer.setInput(session.getRoot());

3. When the treeviewer wants to draw its information to the display, it has to know what Adapter Factory it needs, the factory will give the treeviewer some

Adapter. Doing this requires :( 1) We have to tell the platform that the type of inputobject need what Adapter Factory, So we register the Adapter Factory and

The type of inputobject to the platform:

Platform.getAdapterManager().registerAdapters(adapterFactory, Inputobject.class);

Now that the treeviewer knows the adaptee type (the type of inputobject) and the adapterfactory, it's the time for the factory to give the treeviewer some

Adapters. when treeviewer encounters inputobject, the platform will tell it which adapterfactory it needs, and the adapterfactory will tell the treeviewer what adapter it needs, and the adapter will tell treeviewer how to get the label, children, parent, and the other information, as follows:

/******************************************************************************* * Copyright (c) 2005 Jean-Michel Lemieux, Jeff McAffer and others. * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, and is available at * http://www.eclipse.org/legal/epl-v10.html * * Hyperbola is an RCP application developed for the book *     Eclipse Rich Client Platform -  *         Designing, Coding, and Packaging Java Applications * See http://eclipsercp.org * * Contributors: *     Jean-Michel Lemieux and Jeff McAffer - initial API and implementation *******************************************************************************/package org.eclipsercp.hyperbola;import org.eclipse.core.runtime.IAdapterFactory;import org.eclipse.jface.resource.ImageDescriptor;import org.eclipse.ui.model.IWorkbenchAdapter;import org.eclipse.ui.plugin.AbstractUIPlugin;import org.eclipsercp.hyperbola.model.Contact;import org.eclipsercp.hyperbola.model.ContactsEntry;import org.eclipsercp.hyperbola.model.ContactsGroup;import org.eclipsercp.hyperbola.model.Presence;public class HyperbolaAdapterFactory implements IAdapterFactory {    private IWorkbenchAdapter groupAdapter = new IWorkbenchAdapter() {        public Object getParent(Object o) {            return ((ContactsGroup) o).getParent();        }                public String getLabel(Object o) {            ContactsGroup group = ((ContactsGroup) o);            int available = 0;            Contact[] entries = group.getEntries();            for (int i = 0; i < entries.length; i++) {                Contact contact = entries[i];                if (contact instanceof ContactsEntry) {                    if (((ContactsEntry) contact).getPresence() != Presence.INVISIBLE)                        available++;                }            }            return group.getName() + " (" + available + "/" + entries.length                    + ")";        }        public ImageDescriptor getImageDescriptor(Object object) {            return AbstractUIPlugin.imageDescriptorFromPlugin(                    Application.PLUGIN_ID, IImageKeys.GROUP);        }        public Object[] getChildren(Object o) {            return ((ContactsGroup) o).getEntries();        }    };    private IWorkbenchAdapter entryAdapter = new IWorkbenchAdapter() {        public Object getParent(Object o) {            return ((ContactsEntry) o).getParent();        }        public String getLabel(Object o) {            ContactsEntry entry = ((ContactsEntry) o);            return entry.getNickname() + " (" + entry.getName() + "@"                    + entry.getServer() + ")";        }        public ImageDescriptor getImageDescriptor(Object object) {            ContactsEntry entry = ((ContactsEntry) object);            String key = presenceToKey(entry.getPresence());            return AbstractUIPlugin.imageDescriptorFromPlugin(                    Application.PLUGIN_ID, key);        }        public Object[] getChildren(Object o) {            return new Object[0];        }    };    private String presenceToKey(Presence presence) {        if (presence == Presence.ONLINE)            return IImageKeys.ONLINE;        if (presence == Presence.AWAY)            return IImageKeys.AWAY;        if (presence == Presence.DO_NOT_DISTURB)            return IImageKeys.DO_NOT_DISTURB;        if (presence == Presence.INVISIBLE)            return IImageKeys.OFFLINE;        return "";    }    public Object getAdapter(Object adaptableObject, Class adapterType) {        if (adapterType == IWorkbenchAdapter.class                && adaptableObject instanceof ContactsGroup)            return groupAdapter;        if (adapterType == IWorkbenchAdapter.class                && adaptableObject instanceof ContactsEntry)            return entryAdapter;        return null;    }    public Class[] getAdapterList() {        return new Class[] { IWorkbenchAdapter.class };    }}

 

Now the treeviewer has Parsed the root element completely, then it will encounter the root's children, and how it deal with the children,

It will go from the first step again.

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.