001/*
002 * To change this template, choose Tools | Templates
003 * and open the template in the editor.
004 */
005package org.anarres.qemu.exec.host.disk;
006
007/**
008 *
009 * @author shevek
010 */
011public class CustomDisk extends AbstractDisk {
012
013    private final String text;
014
015    public CustomDisk(String text) {
016        this.text = text;
017    }
018
019    @Override
020    public String toString() {
021        return text;
022    }
023}