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;
008
009/**
010 *
011 * @author shevek
012 */
013public class QEmuIncomingMigrationOption extends AbstractQEmuOption {
014
015    private final int port;
016
017    public QEmuIncomingMigrationOption(int port) {
018        this.port = port;
019    }
020
021    @Override
022    public void appendTo(List<? super String> line) {
023        add(line, "-incoming", port);
024    }
025}