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

20 lines
435 B
Scala
Raw Normal View History

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