1 /***2 * Emitter.java3 */4 5 /* J_LZ_COPYRIGHT_BEGIN *******************************************************6 * Copyright 2001-2004 Laszlo Systems, Inc. All Rights Reserved. *7 * Use is subject to license terms. *8 * J_LZ_COPYRIGHT_END *********************************************************/9 10 package org.openlaszlo.sc;11 import java.util.*;12 import java.nio.*;13 import org.openlaszlo.sc.Instructions.*;14 15 public interface Emitter {16 17 public byte[] assemble(List instrs);18 19 public void emit(Instruction instr);20 }21