Package cu.repsystestbed.view

Examples of cu.repsystestbed.view.JGraphXView


  private ArrayList<Algorithm> observers;

  public TrustGraph(TrustEdgeFactory trustEdgeFactory)
  {
    super(trustEdgeFactory);
    view = new JGraphXView();
    view.m_graphModel = this;
    observers = new ArrayList<Algorithm>();
  }
View Full Code Here


  public ReputationGraph(ReputationEdgeFactory reputationEdgeFactory)
  {
    super(reputationEdgeFactory);
    observers = new ArrayList<Algorithm>();
    observerType = OBSERVER_TYPE.REPSYSTESTBED_ALGORITHM;
    view = new JGraphXView();
    view.m_graphModel = this;

  }
View Full Code Here

  public FeedbackHistoryGraph(FeedbackHistoryEdgeFactory ef)
  {   
    super(ef);
    setOriginalGraph(this);
    observers = new ArrayList<Algorithm>();
    view = new JGraphXView();
    view.m_graphModel = (SimpleDirectedGraph) this;

  }
View Full Code Here

TOP

Related Classes of cu.repsystestbed.view.JGraphXView

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.