Package com.googlecode.goclipse.ui.navigator.elements

Examples of com.googlecode.goclipse.ui.navigator.elements.IGoProjectElement


 
  @Override
  public StyledString getStyledText(Object element) {
   
    if(element instanceof IGoProjectElement) {
      IGoProjectElement goProjectElement = (IGoProjectElement) element;
     
      StyledString baseText = new StyledString(goProjectElement.getName());
     
      if(element instanceof GoRootElement) {
        GoRootElement goRootElement = (GoRootElement) element;
        baseText.append(" - " + goRootElement.getDirectory().toString(), fgColor(LOCATION_ANNOTATION_FG));
        return baseText;
View Full Code Here

TOP

Related Classes of com.googlecode.goclipse.ui.navigator.elements.IGoProjectElement

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.