Added support for scope and depdenency injection on target bean

This commit is contained in:
Johan Rask 2010-06-16 11:24:47 +02:00
parent 265be35d5e
commit 920b4d03f9
14 changed files with 430 additions and 19 deletions

View file

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