Mercurial > hg > semantic-sia
view src/org/qmul/eecs/c4dm/sia/model/ToDatapoint.java @ 94:fedf516f6a78 tip
test file
author | stevenh |
---|---|
date | Mon, 29 Dec 2014 15:16:22 +0000 |
parents | bc2abbaaa23f |
children |
line wrap: on
line source
package org.qmul.eecs.c4dm.sia.model; import org.qmul.eecs.c4dm.sia.rdf.Namespaces; import com.hp.hpl.jena.rdf.model.Resource; public class ToDatapoint { public static final String PROPERTY_URI = Namespaces.SIA_NS_URI + "toDatapoint"; private Resource resource; /** * @return */ public Resource getResource() { return resource; } /** * @param resource */ public void setResource(Resource resource) { this.resource = resource; } }