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
007/**
008 *
009 * @author shevek
010 */
011public class NullCharDevice extends AbstractCharDevice {
012
013    public NullCharDevice() {
014        super("null");
015    }
016
017    @Override
018    public String toString() {
019        return "null";
020    }
021}