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

cdc.applic.consistency.impl.Block Maven / Gradle / Ivy

The newest version!
package cdc.applic.consistency.impl;

import java.util.List;
import java.util.Set;

import cdc.applic.consistency.Composition;

/**
 * A Block is a composition node.
 * 

* General composition is supported: a block can be component of several other parent blocks. * * @author Damien Carbonne */ public interface Block extends Node { /** * @return The composition of this block. This applies to its children. */ public Composition getComposition(); /** * @return The parents blocks of this block. */ public Set getParents(); /** * @return The children nodes of this block. */ public List getChildren(); }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy