All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.vmware.vim.VirtualVideoCardOption Maven / Gradle / Ivy

The newest version!

package com.vmware.vim;

import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlType;


/**
 * 

Java class for VirtualVideoCardOption complex type. * *

The following schema fragment specifies the expected content contained within this class. * *

 * <complexType name="VirtualVideoCardOption">
 *   <complexContent>
 *     <extension base="{urn:vim2}VirtualDeviceOption">
 *       <sequence>
 *         <element name="videoRamSizeInKB" type="{urn:vim2}LongOption" minOccurs="0"/>
 *       </sequence>
 *     </extension>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "VirtualVideoCardOption", propOrder = { "videoRamSizeInKB" }) public class VirtualVideoCardOption extends VirtualDeviceOption { protected LongOption videoRamSizeInKB; /** * Gets the value of the videoRamSizeInKB property. * * @return * possible object is * {@link LongOption } * */ public LongOption getVideoRamSizeInKB() { return videoRamSizeInKB; } /** * Sets the value of the videoRamSizeInKB property. * * @param value * allowed object is * {@link LongOption } * */ public void setVideoRamSizeInKB(LongOption value) { this.videoRamSizeInKB = value; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy