Package edu.cmu.cs.fusion.debugging

Examples of edu.cmu.cs.fusion.debugging.DebugInfo


    return null;
  }

  @Override
  public void refresh() {
    DebugInfo info = content.getInfo();

    String[] rels = info != null ? makeIntoRelArr(info.getRels()) : new String[] {};
    String[] aliases = info != null ? makeIntoPointerArr(info.getAliases()) : new String[] {};
    String[] labels = info != null ? makeIntoObjLabelArr(info.getAliases()) : new String[] {};
    String statement = info != null ? info.getStatement() : "-";

    relPane.setItems(rels);
    objPane.setItems(labels);
    aliasPane.setItems(aliases);
    statementLabel.setText(statement);
View Full Code Here

TOP

Related Classes of edu.cmu.cs.fusion.debugging.DebugInfo

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.