/Prototipo/PrototipoCommons/src/memoria/commons/entities/Escuela.java

http://prototipomemoria.googlecode.com/ · Java · 29 lines · 15 code · 6 blank · 8 comment · 0 complexity · f783cf66a681d658ddd276ab4700ac23 MD5 · raw file

  1. /*
  2. * To change this template, choose Tools | Templates
  3. * and open the template in the editor.
  4. */
  5. package memoria.commons.entities;
  6. import java.util.List;
  7. import javax.xml.bind.annotation.XmlElement;
  8. import memoria.commons.structures.AbstractGeographicElement;
  9. import memoria.commons.structures.GeoReferenced;
  10. import memoria.commons.structures.Point;
  11. /**
  12. *
  13. * @author diego
  14. */
  15. public class Escuela extends EntidadPunto{
  16. public Escuela(Point location, String nombre, String descripcion) {
  17. super(nombre, descripcion, location);
  18. }
  19. @Override
  20. public String getIconName() {
  21. return "iconEscuela";
  22. }
  23. }