pekko/akka-spring/src/main/scala/PropertyEntry.scala

18 lines
384 B
Scala
Raw Normal View History

package se.scalablesolutions.akka.spring
/**
2010-06-30 16:26:15 +02:00
* Represents a property element
* @author <a href="johan.rask@jayway.com">Johan Rask</a>
*/
class PropertyEntry {
2010-06-30 16:20:20 +02:00
var name:String = _
var value:String = null
var ref:String = null
2010-06-30 16:26:15 +02:00
2010-06-30 16:20:20 +02:00
override def toString(): String = {
format("name = %s,value = %s, ref = %s", name,value,ref)
}
2010-06-30 16:26:15 +02:00
}