/* * To change this template, choose Tools | Templates * and open the template in the editor. */ package datapath.graph.display; import datapath.graph.operations.Operation; /** * * @author jh */ public class DisplayNode { protected Operation op; public DisplayNode(Operation op) { this.op = op; } }