616263646566676869
*/ public String getSoftwareVersion() { try { return this.itSource.getSoftwareVersion(); } catch (SourceDeletedException e) { throw new IPodRemoved(); } }
7374757677787980
*/ public String getName() { try { return this.itSource.getName(); } catch (ObjectDeletedException e) { throw new IPodRemoved(); } }
84858687888990919293
*/ public void setName(String name) throws IPodReadOnly { try { this.itSource.setName(name); } catch (ObjectDeletedException e) { throw new IPodRemoved(); } catch (ObjectLockedException e) { throw new IPodReadOnly(this); } }
979899100101102103104
*/ public double getCapacity(){ try { return this.itSource.getCapacity(); } catch (SourceDeletedException e) { throw new IPodRemoved(); } }
108109110111112113114115
*/ public double getFreeSpace(){ try { return this.itSource.getFreeSpace(); } catch (SourceDeletedException e) { throw new IPodRemoved(); } }
119120121122123124125126
*/ public PlaylistCollection getPlaylists(){ try { return new PlaylistCollectionImpl(this, this.itSource.getPlaylists()); } catch (SourceDeletedException e) { throw new IPodRemoved(); } }