![JAR search and dependency download from the Maven repository](/logo.png)
com.vmware.vim25.PropertyChange Maven / Gradle / Ivy
package com.vmware.vim25;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
/**
* Java class for PropertyChange complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="PropertyChange">
* <complexContent>
* <extension base="{urn:vim25}DynamicData">
* <sequence>
* <element name="name" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="op" type="{urn:vim25}PropertyChangeOp"/>
* <element name="val" type="{http://www.w3.org/2001/XMLSchema}anyType" minOccurs="0"/>
* </sequence>
* </extension>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "PropertyChange", propOrder = {
"name",
"op",
"val"
})
public class PropertyChange
extends DynamicData
{
@XmlElement(required = true)
protected String name;
@XmlElement(required = true)
@XmlSchemaType(name = "string")
protected PropertyChangeOp op;
protected Object val;
/**
* Gets the value of the name property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getName() {
return name;
}
/**
* Sets the value of the name property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setName(String value) {
this.name = value;
}
/**
* Gets the value of the op property.
*
* @return
* possible object is
* {@link PropertyChangeOp }
*
*/
public PropertyChangeOp getOp() {
return op;
}
/**
* Sets the value of the op property.
*
* @param value
* allowed object is
* {@link PropertyChangeOp }
*
*/
public void setOp(PropertyChangeOp value) {
this.op = value;
}
/**
* Gets the value of the val property.
*
* @return
* possible object is
* {@link Object }
*
*/
public Object getVal() {
return val;
}
/**
* Sets the value of the val property.
*
* @param value
* allowed object is
* {@link Object }
*
*/
public void setVal(Object value) {
this.val = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy