Package org.woped.core.qualanalysis

Examples of org.woped.core.qualanalysis.IReachabilityGraph


    }
   
    public IReachabilityGraph getReachGraphFocus()
    {
      JInternalFrame[] frames = desktop.getAllFrames();
      IReachabilityGraph result = null;
      for (int i=0;(result==null)&&(i<frames.length);++i)
        if (frames[i] instanceof IReachabilityGraph)
          result = ((IReachabilityGraph)frames[i]);
      return result;
    }
View Full Code Here

TOP

Related Classes of org.woped.core.qualanalysis.IReachabilityGraph

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.