001 // 002 // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.1.5-b01-fcs 003 // See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a> 004 // Any modifications to this file will be lost upon recompilation of the source schema. 005 // Generated on: 2008.12.02 at 08:59:01 AM HST 006 // 007 008 009 package org.hackystat.tickertape.tickerlingua.jaxb; 010 011 import javax.xml.bind.annotation.XmlAccessType; 012 import javax.xml.bind.annotation.XmlAccessorType; 013 import javax.xml.bind.annotation.XmlAttribute; 014 import javax.xml.bind.annotation.XmlElement; 015 import javax.xml.bind.annotation.XmlRootElement; 016 import javax.xml.bind.annotation.XmlType; 017 018 019 /** 020 * <p>Java class for anonymous complex type. 021 * 022 * <p>The following schema fragment specifies the expected content contained within this class. 023 * 024 * <pre> 025 * <complexType> 026 * <complexContent> 027 * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> 028 * <sequence> 029 * <element ref="{}Properties" minOccurs="0"/> 030 * </sequence> 031 * <attribute ref="{}class use="required""/> 032 * </restriction> 033 * </complexContent> 034 * </complexType> 035 * </pre> 036 * 037 * 038 */ 039 @XmlAccessorType(XmlAccessType.FIELD) 040 @XmlType(name = "", propOrder = { 041 "properties" 042 }) 043 @XmlRootElement(name = "Ticker") 044 public class Ticker { 045 046 @XmlElement(name = "Properties") 047 protected Properties properties; 048 @XmlAttribute(name = "class", required = true) 049 protected String clazz; 050 051 /** 052 * Gets the value of the properties property. 053 * 054 * @return 055 * possible object is 056 * {@link Properties } 057 * 058 */ 059 public Properties getProperties() { 060 return properties; 061 } 062 063 /** 064 * Sets the value of the properties property. 065 * 066 * @param value 067 * allowed object is 068 * {@link Properties } 069 * 070 */ 071 public void setProperties(Properties value) { 072 this.properties = value; 073 } 074 075 /** 076 * Gets the value of the clazz property. 077 * 078 * @return 079 * possible object is 080 * {@link String } 081 * 082 */ 083 public String getClazz() { 084 return clazz; 085 } 086 087 /** 088 * Sets the value of the clazz property. 089 * 090 * @param value 091 * allowed object is 092 * {@link String } 093 * 094 */ 095 public void setClazz(String value) { 096 this.clazz = value; 097 } 098 099 }