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: 2007.12.18 at 12:14:46 PM GMT-10:00 006 // 007 008 009 package org.hackystat.sensor.xmldata.jaxb.v7; 010 011 import java.util.HashMap; 012 import java.util.Map; 013 import javax.xml.bind.annotation.XmlAccessType; 014 import javax.xml.bind.annotation.XmlAccessorType; 015 import javax.xml.bind.annotation.XmlAnyAttribute; 016 import javax.xml.bind.annotation.XmlRootElement; 017 import javax.xml.bind.annotation.XmlType; 018 import javax.xml.namespace.QName; 019 020 021 /** 022 * <p>Java class for anonymous complex type. 023 * 024 * <p>The following schema fragment specifies the expected content contained within this class. 025 * 026 * <pre> 027 * <complexType> 028 * <complexContent> 029 * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> 030 * </restriction> 031 * </complexContent> 032 * </complexType> 033 * </pre> 034 * 035 * 036 */ 037 @XmlAccessorType(XmlAccessType.FIELD) 038 @XmlType(name = "") 039 @XmlRootElement(name = "entry") 040 public class Entry { 041 042 @XmlAnyAttribute 043 private Map<QName, String> otherAttributes = new HashMap<QName, String>(); 044 045 /** 046 * Gets a map that contains attributes that aren't bound to any typed property on this class. 047 * 048 * <p> 049 * the map is keyed by the name of the attribute and 050 * the value is the string value of the attribute. 051 * 052 * the map returned by this method is live, and you can add new attribute 053 * by updating the map directly. Because of this design, there's no setter. 054 * 055 * 056 * @return 057 * always non-null 058 */ 059 public Map<QName, String> getOtherAttributes() { 060 return otherAttributes; 061 } 062 063 }