alexNeto/previsao-tempo

View on GitHub
src/main/java/com/ts/previsao/tempo/cidade/Cidades.java

Summary

Maintainability
A
0 mins
Test Coverage
package com.ts.previsao.tempo.cidade;

import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlRootElement;
import javax.xml.bind.annotation.XmlType;

@XmlRootElement(name = "cidades")
@XmlType(propOrder = {"cidade"})
public class Cidades {
    @XmlElement
    private Cidade[] cidade;

    public Cidade[] getCidade() {
        return this.cidade;
    }
}