package jetbrains.mps.ide.dataFlow.presentation; /*Generated by MPS */ import java.util.List; public interface IProgram<T extends IInstruction<T>> { IInstruction<T> getStart(); IInstruction<T> getEnd(); List<IInstruction<T>> getInstructions(); }