Class CommitParser

java.lang.Object
edu.handong.csee.isel.bfc.collector.github.CommitParser

public class CommitParser
extends java.lang.Object
Parsing commit addresses and print bug commit contents to .csv file.
Author:
yangsujin
  • Field Summary

    Fields 
    Modifier and Type Field Description
    java.util.TreeSet<java.lang.String> commitAddress  
  • Constructor Summary

    Constructors 
    Constructor Description
    CommitParser()  
  • Method Summary

    Modifier and Type Method Description
    java.util.HashSet<java.lang.String> getCommitAddress()  
    void parseCommitAddress​(java.lang.String address)
    입력된 github repository의 issue page에서 bug fixing commit을 수집한다.

    Methods inherited from class java.lang.Object

    equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
  • Field Details

    • commitAddress

      public java.util.TreeSet<java.lang.String> commitAddress
  • Constructor Details

  • Method Details

    • parseCommitAddress

      public void parseCommitAddress​(java.lang.String address) throws java.lang.Exception
      입력된 github repository의 issue page에서 bug fixing commit을 수집한다. (Collect bug fixing commits from the issue page of the entered github repository.)
      Parameters:
      address - 특정 github repository url이다. (It is a specific github repository url.)
      Throws:
      java.lang.Exception
    • getCommitAddress

      public java.util.HashSet<java.lang.String> getCommitAddress()
      Returns:
      Returns a bug fixing commit.