222324252627282930
private ArrayList<Algorithm> observers; public TrustGraph(TrustEdgeFactory trustEdgeFactory) { super(trustEdgeFactory); view = new JGraphXView(); view.m_graphModel = this; observers = new ArrayList<Algorithm>(); }
303132333435363738
public ReputationGraph(ReputationEdgeFactory reputationEdgeFactory) { super(reputationEdgeFactory); observers = new ArrayList<Algorithm>(); observerType = OBSERVER_TYPE.REPSYSTESTBED_ALGORITHM; view = new JGraphXView(); view.m_graphModel = this; }
333435363738394041
public FeedbackHistoryGraph(FeedbackHistoryEdgeFactory ef) { super(ef); setOriginalGraph(this); observers = new ArrayList<Algorithm>(); view = new JGraphXView(); view.m_graphModel = (SimpleDirectedGraph) this; }