All Downloads are FREE. Search and download functionalities are using the official Maven repository.

it.uniroma2.art.coda.pearl.model.graph.GraphSingleElemBNode Maven / Gradle / Ivy

There is a newer version: 2.0.2
Show newest version
package it.uniroma2.art.coda.pearl.model.graph;

import it.uniroma2.art.coda.pearl.model.ProjectionRule;

/**
 * This class is the single element containing a blank node
 * @author Andrea Turbati
 *
 */
public class GraphSingleElemBNode extends GraphSingleElement{
	public String getBnodeIdentifier() {
		return bnodeIdentifier;
	}


	private String bnodeIdentifier;
	

	public GraphSingleElemBNode(String bnodeIdentifier, ProjectionRule prRule) {
		super(prRule);
		this.bnodeIdentifier = bnodeIdentifier;
	}


	@Override
	public String getValueAsString() {
		return "_:" + getBnodeIdentifier();
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy