Packages

case class RepositoryInfo(owner: String, name: String, repository: Repository, issueCount: Int, pullCount: Int, forkedCount: Int, branchList: Seq[String], tags: Seq[TagInfo], managers: Seq[String]) extends Product with Serializable

Linear Supertypes
Serializable, Product, Equals, AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. RepositoryInfo
  2. Serializable
  3. Product
  4. Equals
  5. AnyRef
  6. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Instance Constructors

  1. new RepositoryInfo(repo: util.JGitUtil.RepositoryInfo, model: Repository, forkedCount: Int, managers: Seq[String])

    Creates instance without issue and pull request count.

  2. new RepositoryInfo(repo: util.JGitUtil.RepositoryInfo, model: Repository, issueCount: Int, pullCount: Int, forkedCount: Int, managers: Seq[String])

    Creates instance with issue count and pull request count.

  3. new RepositoryInfo(owner: String, name: String, repository: Repository, issueCount: Int, pullCount: Int, forkedCount: Int, branchList: Seq[String], tags: Seq[TagInfo], managers: Seq[String])

Value Members

  1. val branchList: Seq[String]
  2. val forkedCount: Int
  3. def httpUrl(implicit context: Context): String
  4. val issueCount: Int
  5. val managers: Seq[String]
  6. val name: String
  7. val owner: String
  8. def productElementNames: Iterator[String]
    Definition Classes
    Product
  9. val pullCount: Int
  10. val repository: Repository
  11. def splitPath(path: String): (String, String)
  12. def sshUrl(implicit context: Context): Option[String]
  13. val tags: Seq[TagInfo]