FileDocCategorySizeDatePackage
WayPointContentProvider.javaAPI DocAndroid 1.5 API1347Wed May 06 22:41:08 BST 2009com.android.ddmuilib.location

WayPointContentProvider

public class WayPointContentProvider extends Object implements org.eclipse.jface.viewers.IStructuredContentProvider
Content provider to display {@link WayPoint} objects in a Table.

The expected type for the input is {@link WayPoint}[].

Fields Summary
Constructors Summary
Methods Summary
public voiddispose()

        // pass
    
public java.lang.Object[]getElements(java.lang.Object inputElement)

        if (inputElement instanceof WayPoint[]) {
            return (WayPoint[])inputElement;
        }

        return new Object[0];
    
public voidinputChanged(org.eclipse.jface.viewers.Viewer viewer, java.lang.Object oldInput, java.lang.Object newInput)

        // pass