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

it.uniroma2.art.coda.pearl.model.GraphElement Maven / Gradle / Ivy

The newest version!
package it.uniroma2.art.coda.pearl.model;

abstract public class GraphElement {
	
	protected ProjectionRule ownerRule;
		
	public ProjectionRule getOwnerRule() {
		return ownerRule;
	}
	
	public boolean isOptionalGraphStruct(){
		return (this instanceof OptionalGraphStruct);
	}
	
	public OptionalGraphStruct asOptionalGraphStruct(){
		return (OptionalGraphStruct) this;
	}
	
	public boolean isGraphStruct(){
		return (this instanceof GraphStruct);
	}
	
	public GraphStruct asGraphStruct(){
		return (GraphStruct) this;
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy