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

com.vmware.vim25.KernelModuleSectionInfo Maven / Gradle / Ivy

There is a newer version: 0.6.60
Show newest version

package com.vmware.vim25;

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


/**
 * 

Java class for KernelModuleSectionInfo complex type. * *

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

 * <complexType name="KernelModuleSectionInfo">
 *   <complexContent>
 *     <extension base="{urn:vim25}DynamicData">
 *       <sequence>
 *         <element name="address" type="{http://www.w3.org/2001/XMLSchema}long"/>
 *         <element name="length" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
 *       </sequence>
 *     </extension>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "KernelModuleSectionInfo", propOrder = { "address", "length" }) public class KernelModuleSectionInfo extends DynamicData { protected long address; protected Integer length; /** * Gets the value of the address property. * */ public long getAddress() { return address; } /** * Sets the value of the address property. * */ public void setAddress(long value) { this.address = value; } /** * Gets the value of the length property. * * @return * possible object is * {@link Integer } * */ public Integer getLength() { return length; } /** * Sets the value of the length property. * * @param value * allowed object is * {@link Integer } * */ public void setLength(Integer value) { this.length = value; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy