001/*
002 * To change this template, choose Tools | Templates
003 * and open the template in the editor.
004 */
005package org.anarres.qemu.exec.host.chardev;
006
007import java.util.Map;
008import javax.annotation.Nonnull;
009
010/**
011 *
012 * @author shevek
013 */
014public interface CharDevice {
015
016    @Nonnull
017    public String getName();
018
019    @Nonnull
020    public Map<? extends String, ? extends Object> getProperties();
021}