com.hadii.stiff.parse.ParsedProject Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of stiff-lib Show documentation
Show all versions of stiff-lib Show documentation
stiff-lib is a java library for generating stiff diagrams.
The newest version!
package com.hadii.stiff.parse;
import com.hadii.clarpse.compiler.ClarpseProject;
import com.hadii.clarpse.compiler.SourceFiles;
import com.hadii.clarpse.sourcemodel.OOPSourceCodeModel;
public class ParsedProject {
private final SourceFiles codebase;
public ParsedProject(SourceFiles codebase) {
this.codebase = codebase;
}
public OOPSourceCodeModel model() throws Exception {
return new ClarpseProject(codebase).result();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy