https://github.com/ankeshanand/dependencyanalyzer
https://github.com/ankeshanand/dependencyanalyzer
Last synced: 4 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/ankeshanand/dependencyanalyzer
- Owner: ankeshanand
- Created: 2013-06-05T13:29:08.000Z (about 12 years ago)
- Default Branch: master
- Last Pushed: 2013-06-05T14:25:26.000Z (about 12 years ago)
- Last Synced: 2025-01-12T15:14:07.919Z (6 months ago)
- Language: Java
- Size: 121 KB
- Stars: 1
- Watchers: 3
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: Readme.md
Awesome Lists containing this project
README
This is an Eclispse Project. The main source file is src/RunAnalyzer.java
Below is the class interface for the Analyzer Classinterface AnalyzerInterface {
public String[] getDependencies(String filename) throws IOException; //Returns a string with a list of dependencies,given a filename.
}