rpytel1 / log-strategy

Project conducted for Seminar in Machine Learning for Software Engineering. Aim of our research was to explore possible directions of Deep Learning solutions for log detection in a snippet of code.
0 stars 1 forks source link

Feature/parser #10

Closed jan-gerling closed 4 years ago

jan-gerling commented 4 years ago

Base version of the parser with various apache projects mined for functions.

The parser extracts function name, signature and body from each java class and parses it into a txt file in results directory in the following format:

function name function signature function body

e.g.

timeoutMs
public T timeoutMs(Integer timeoutMs)
{    this.timeoutMs = timeoutMs;    return (T) this;}