summaryrefslogtreecommitdiff
path: root/src/compiler/scala/tools/nsc/doc/model/TreeEntity.scala
blob: 7a0c8c7961f7974005f86fa6d627a18d17d214d5 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
/** we create a TreeEntity to store some text and some hyperLinks to make on entities in it */

package scala.tools.nsc
package doc
package model

import scala.collection.immutable.TreeMap


class TreeEntity {
  var expression:String = ""
  var refs = new TreeMap[Int, (Entity, Int)] // start, (Entity to be linked to , end)
}