RandomSec/src/main/java/com/metaweb/gridworks/protograph/ExistingTopicNode.java
David Huynh bf79b24bf3 A bit more modeling for the proto-graph.
Two spinners to prepare for more async UI indications.

git-svn-id: http://google-refine.googlecode.com/svn/trunk@55 7d457c2a-affb-35e4-300a-418c747d4874
2010-02-06 02:54:01 +00:00

24 lines
523 B
Java

package com.metaweb.gridworks.protograph;
import java.util.Properties;
import org.json.JSONException;
import org.json.JSONWriter;
public class ExistingTopicNode extends Node {
private static final long serialVersionUID = 8418548867745587387L;
final protected FreebaseTopic _topic;
public ExistingTopicNode(FreebaseTopic topic) {
_topic = topic;
}
@Override
public void write(JSONWriter writer, Properties options)
throws JSONException {
// TODO Auto-generated method stub
}
}