Back to project page RealtimeStorage-Android.
The source code is released under:
MIT License
If you think the Android project RealtimeStorage-Android listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package co.realtime.storage; /*from ww w.j a v a 2 s. c om*/ public class TableSnapshot { StorageContext context; String name; TableSnapshot(StorageContext context, String name){ this.context = context; this.name = name; } /** * Retrieves the name of the table * * @return Table name */ public String val(){ return this.name; } /** * Returns a table reference * * @return The table reference */ public TableRef ref(){ return new TableRef(this.context, this.name); } }