cdc.applic.consistency.impl.Reference Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of cdc-applic-consistency-impl Show documentation
Show all versions of cdc-applic-consistency-impl Show documentation
Applicabilities Consistency Implementation.
The newest version!
package cdc.applic.consistency.impl;
/**
* A Reference is a leaf node, declared in a block.
*
* @author Damien Carbonne
*/
public interface Reference extends Node {
/**
* @return The identifier of the referenced block.
*/
public String getTargetId();
}