/src/com/google/maps/extras/xmlparsers/kml/Folder.as

http://gmaps-utility-library-flash.googlecode.com/ · ActionScript · 31 lines · 13 code · 3 blank · 15 comment · 0 complexity · 2d4737f6f47701d3f940770f2332b367 MD5 · raw file

  1. /*
  2. * Copyright 2008 Google Inc.
  3. * Licensed under the Apache License, Version 2.0:
  4. * http://www.apache.org/licenses/LICENSE-2.0
  5. */
  6. package com.google.maps.extras.xmlparsers.kml
  7. {
  8. /**
  9. * Class that represents the <Folder> element.
  10. *
  11. * @see http://code.google.com/apis/kml/documentation/kmlreference.html#folder
  12. */
  13. public class Folder extends Container
  14. {
  15. /**
  16. * Constructor for the class.
  17. *
  18. * @param x
  19. */
  20. public function Folder(x:XMLList)
  21. {
  22. super(x);
  23. }
  24. public override function toString():String {
  25. return "Folder: " + super.toString();
  26. }
  27. }
  28. }