001 002package gudusoft.gsqlparser.dlineage.dataflow.model; 003 004import java.util.Collection; 005 006public interface Relationship { 007 008 RelationshipElement<?> getTarget(); 009 010 Collection<?> getSources(); 011 012 RelationshipType getRelationshipType(); 013 014 EffectType getEffectType(); 015 016 String getFunction(); 017 018 boolean isShowStarRelation(); 019}