/* * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this * file, You can obtain one at http://mozilla.org/MPL/2.0/. * Copyright (c) 2013, MPL CodeInside http://codeinside.ru */ package ru.gkn; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAttribute; import javax.xml.bind.annotation.XmlType; @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "tSoviet_Village") public class TSovietVillage { @XmlAttribute(name = "Name", required = true) protected String name; @XmlAttribute(name = "Type", required = true) protected DSovietVillage type; /** * 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 type property. * * @return * possible object is * {@link DSovietVillage } * */ public DSovietVillage getType() { return type; } /** * Sets the value of the type property. * * @param value * allowed object is * {@link DSovietVillage } * */ public void setType(DSovietVillage value) { this.type = value; } }