Created
May 13, 2013 22:36
-
-
Save jagwire/5572088 to your computer and use it in GitHub Desktop.
Collaborative Objects in a cell.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public FoundationCell extends Cell { | |
@UsesCellComponent | |
private SharedStateComponent ssc; | |
private SharedMapImpl sharedMap; | |
protected CollaborativeString CollaborativeString(String value) { | |
return new CollaborativeString(value); | |
} | |
public void usage() { | |
String x = CollaborativeString("Meh", new Runnable() { ... }); | |
} | |
class CollaborativeString extends CollaborativeObject { | |
p | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment