Ignore:
Timestamp:
10/25/05 12:15:50 (19 years ago)
Author:
boris
Message:
  • removed tracing printouts
  • created org.modelica.mdt.ui package and put stuff there
Location:
trunk/org.modelica.mdt/src/org/modelica/mdt/ui
Files:
1 added
1 moved

Legend:

Unmodified
Added
Removed
  • trunk/org.modelica.mdt/src/org/modelica/mdt/ui/ModelicaElementContentProvider.java

    r88 r89  
    4040 */
    4141
    42 package org.modelica.mdt;
     42package org.modelica.mdt.ui;
    4343
    4444import org.eclipse.core.resources.IContainer;
     
    4848import org.eclipse.jface.viewers.ITreeContentProvider;
    4949import org.eclipse.jface.viewers.Viewer;
     50import org.modelica.mdt.MdtPlugin;
    5051import org.modelica.mdt.core.IModelicaProject;
    5152import org.modelica.mdt.core.IModelicaRoot;
     
    7879    public void dispose()
    7980    {
    80         System.out.println("disposed " + ModelicaElementContentProvider.class);
    8181    }
    8282
    8383    public void inputChanged(Viewer viewer, Object oldInput, Object newInput)
    8484    {
    85         System.out.println("input changed " + ModelicaElementContentProvider.class);
    8685    }
    8786
     
    106105        else if (parent instanceof IParent)
    107106        {
    108             System.out.println("get children of " + parent);
    109             Object[] ch = ((IParent)parent).getChildren();
    110             for (Object ob : ch)
    111             {
    112                 System.out.println("got " + ob.getClass());
    113             }
    114            
    115             return ch;
    116             //return ((IParent)parent).getChildren();
     107            return ((IParent)parent).getChildren();
    117108        }
    118109        return null;
     
    121112    public Object getParent(Object element)
    122113    {
    123         System.out.println("get parent " + ModelicaElementContentProvider.class);
    124114        return null;
    125115    }
Note: See TracChangeset for help on using the changeset viewer.