Packages

case class FileInfo(id: ObjectId, isDirectory: Boolean, name: String, path: String, message: String, commitId: String, time: Date, author: String, mailAddress: String, linkUrl: Option[String]) extends Product with Serializable

The file data for the file list of the repository viewer.

id

the object id

isDirectory

whether is it directory

name

the file (or directory) name

path

the file (or directory) complete path

message

the last commit message

commitId

the last commit id

time

the last modified time

author

the last committer name

mailAddress

the committer's mail address

linkUrl

the url of submodule

Linear Supertypes
Serializable, Product, Equals, AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. FileInfo
  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 FileInfo(id: ObjectId, isDirectory: Boolean, name: String, path: String, message: String, commitId: String, time: Date, author: String, mailAddress: String, linkUrl: Option[String])

    id

    the object id

    isDirectory

    whether is it directory

    name

    the file (or directory) name

    path

    the file (or directory) complete path

    message

    the last commit message

    commitId

    the last commit id

    time

    the last modified time

    author

    the last committer name

    mailAddress

    the committer's mail address

    linkUrl

    the url of submodule

Value Members

  1. val author: String
  2. val commitId: String
  3. val id: ObjectId
  4. val isDirectory: Boolean
  5. val linkUrl: Option[String]
  6. val mailAddress: String
  7. val message: String
  8. val name: String
  9. val path: String
  10. def productElementNames: Iterator[String]
    Definition Classes
    Product
  11. val time: Date