codemining.java.codeutils.ProjectTypeInformation Java Examples

The following examples show how to use codemining.java.codeutils.ProjectTypeInformation. You can vote up the ones you like or vote down the ones you don't like, and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example #1
Source File: JavaMethodDeclarationBindingExtractor.java    From api-mining with GNU General Public License v3.0 5 votes vote down vote up
private ProjectTypeInformation buildProjectTypeInformation(
		final File inputFolder) {
	final ProjectTypeInformation pti = new ProjectTypeInformation(
			inputFolder);
	pti.collect();
	return pti;
}
 
Example #2
Source File: JavaMethodDeclarationBindingExtractor.java    From tassal with BSD 3-Clause "New" or "Revised" License 5 votes vote down vote up
private ProjectTypeInformation buildProjectTypeInformation(
		final File inputFolder) {
	final ProjectTypeInformation pti = new ProjectTypeInformation(
			inputFolder);
	pti.collect();
	return pti;
}
 
Example #3
Source File: JavaMethodDeclarationBindingExtractor.java    From codemining-core with BSD 3-Clause "New" or "Revised" License 5 votes vote down vote up
private ProjectTypeInformation buildProjectTypeInformation(
		final File inputFolder) {
	final ProjectTypeInformation pti = new ProjectTypeInformation(
			inputFolder);
	pti.collect();
	return pti;
}