001/* 002 * To change this template, choose Tools | Templates 003 * and open the template in the editor. 004 */ 005package org.anarres.qemu.exec; 006 007import java.util.List; 008import javax.annotation.Nonnull; 009 010/** 011 * 012 * @author shevek 013 */ 014public interface QEmuOption { 015 016 public static interface Container extends Iterable<QEmuOption> { 017 } 018 019 public void appendTo(@Nonnull List<? super String> line); 020}