Package com.zerog.ia.auto.project
Class Media
- java.lang.Object
-
- com.zerog.ia.auto.project.ProjectObject
-
- com.zerog.ia.auto.project.Media
-
- All Implemented Interfaces:
Referenceable
public final class Media extends ProjectObject
Defines a CD-ROM/DVD media volume.- See Also:
Medias
-
-
Constructor Summary
Constructors Constructor Description Media()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.String
getName()
The name of the media that is displayed to the end user when the installer requests a new media volume.long
getSize()
The size of the media in bytes.void
setName(java.lang.String name)
The name of the media that is displayed to the end user when the installer requests a new media volume.void
setSize(long size)
The size of the media in bytes.-
Methods inherited from class com.zerog.ia.auto.project.ProjectObject
equals, getReferenceID, hashCode, setReferenceID
-
-
-
-
Method Detail
-
setName
public void setName(java.lang.String name)
The name of the media that is displayed to the end user when the installer requests a new media volume. For compatibility with Unix systems, use 8 character names without spaces.
-
getName
public java.lang.String getName()
The name of the media that is displayed to the end user when the installer requests a new media volume. For compatibility with Unix systems, use 8 character names without spaces.
-
setSize
public void setSize(long size)
The size of the media in bytes. The default size is 681574400 (650MB).
-
getSize
public long getSize()
The size of the media in bytes. The default size is 681574400 (650MB).
-
-