pastebin - collaborative debugging
pastebin is a collaborative debugging tool allowing you to share
and modify code snippets while chatting on IRC, IM or a message board.
This site is developed to XHTML and CSS2 W3C standards.
If you see this paragraph, your browser does not support those standards and you
need to upgrade. Visit WaSP
for a variety of options.
Posted by ArtemGr on December Thu 10th 5:31 PM - Never Expires (modification of post by ArtemGr view diff)
diff | download | new post
import scala.
reflect.
BeanProperty
case class DenormalizedRating
(@BeanProperty
var actLevStart
: Int,
@BeanProperty
var actLevEnd
: Int) {
def this () = this (0,
0) // Default constructor for flexjson.
def activityRating
= actLevEnd - actLevStart
}
def cl
= new flexjson.
ClassLocator {
val classLoader
= Thread.
currentThread.
getContextClassLoader
override def locate
(map
: java.
util.
Map[_,
_], path
: flexjson.
Path): Class[_] = {
if (map.
containsKey ("actLevStart")) classOf
[DenormalizedRating
]
val clazz
= map.
get ("class") // Flexjson class signature.
if (clazz.
isInstanceOf[String
]) classLoader.
loadClass (clazz.
toString)
else classOf
[java.
util.
HashMap[_,
_]]
}
}
}
(new flexjson.
JSONDeserializer () .
use (null, cl
) .
deserialize ("""
{"foo1": "bar1",
"foo2": {"actLevStart": 1, "actLevEnd": 2},
"foo3": {"someMapKey": "someMapValue"}}
""")).toString
Submit a correction or amendment below. (click here to make a fresh posting)After submitting an amendment, you'll be able to view the differences between the old and new posts easily.