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

com.aonaware.services.webservices.Definition Maven / Gradle / Ivy

The newest version!

package com.aonaware.services.webservices;

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


/**
 * 

Java class for Definition complex type. * *

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

 * <complexType name="Definition">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="Word" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="Dictionary" type="{http://services.aonaware.com/webservices/}Dictionary" minOccurs="0"/>
 *         <element name="WordDefinition" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "Definition", propOrder = { "word", "dictionary", "wordDefinition" }) public class Definition { @XmlElement(name = "Word") protected String word; @XmlElement(name = "Dictionary") protected Dictionary dictionary; @XmlElement(name = "WordDefinition") protected String wordDefinition; /** * Gets the value of the word property. * * @return * possible object is * {@link String } * */ public String getWord() { return word; } /** * Sets the value of the word property. * * @param value * allowed object is * {@link String } * */ public void setWord(String value) { this.word = value; } /** * Gets the value of the dictionary property. * * @return * possible object is * {@link Dictionary } * */ public Dictionary getDictionary() { return dictionary; } /** * Sets the value of the dictionary property. * * @param value * allowed object is * {@link Dictionary } * */ public void setDictionary(Dictionary value) { this.dictionary = value; } /** * Gets the value of the wordDefinition property. * * @return * possible object is * {@link String } * */ public String getWordDefinition() { return wordDefinition; } /** * Sets the value of the wordDefinition property. * * @param value * allowed object is * {@link String } * */ public void setWordDefinition(String value) { this.wordDefinition = value; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy