Package org.objectstyle.wolips.jdt.classpath.model

Examples of org.objectstyle.wolips.jdt.classpath.model.IEclipseFramework


    return null;
  }

  public String getColumnText(Object element, int columnIndex) {
    String text;
    IEclipseFramework framework = (IEclipseFramework) element;
    if (columnIndex == 0) {
      text = framework.getName();
    } else if (columnIndex == 1) {
      text = framework.getRoot().getName();
    } else {
      text = "";
    }
    return text;
  }
View Full Code Here

TOP

Related Classes of org.objectstyle.wolips.jdt.classpath.model.IEclipseFramework

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.