Mercurial > hg > Members > tatsuki > Alice
view src/alice/codesegment/SingletonMessage.java @ 198:f151dea22b2c working
add flip api
author | sugi |
---|---|
date | Tue, 19 Mar 2013 01:25:09 +0900 |
parents | 6773146b353c |
children |
line wrap: on
line source
package alice.codesegment; import org.msgpack.MessagePack; public class SingletonMessage { private static final MessagePack instance = new MessagePack(); public static MessagePack getInstance(){ return instance; } }