Mercurial > hg > semantic-sia
view src/org/qmul/eecs/c4dm/sia/model/ToDatapoint.java @ 75:bc2abbaaa23f
added Resource resource attribute and getters and setters
author | stevenh |
---|---|
date | Fri, 02 Aug 2013 15:42:04 +0100 |
parents | 2681a72cc8c9 |
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; } }