/poem-jvm/src/javascript/movi/src/stencil.js

https://bitbucket.org/hawky4s/oryx · JavaScript · 77 lines · 30 code · 14 blank · 33 comment · 7 complexity · db63404d65da17c8c129d8c5cb2e8533 MD5 · raw file

  1. /**
  2. * Copyright (c) 2009
  3. * Jan-Felix Schwarz
  4. *
  5. * Permission is hereby granted, free of charge, to any person obtaining a
  6. * copy of this software and associated documentation files (the "Software"),
  7. * to deal in the Software without restriction, including without limitation
  8. * the rights to use, copy, modify, merge, publish, distribute, sublicense,
  9. * and/or sell copies of the Software, and to permit persons to whom the
  10. * Software is furnished to do so, subject to the following conditions:
  11. *
  12. * The above copyright notice and this permission notice shall be included in
  13. * all copies or substantial portions of the Software.
  14. *
  15. * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  16. * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  17. * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
  18. * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
  19. * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
  20. * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
  21. * DEALINGS IN THE SOFTWARE.
  22. **/
  23. MOVI.namespace("stencilset");
  24. (function() {
  25. /**
  26. * Stencil represents an entity of a stencilset.
  27. * @namespace MOVI.stencilset
  28. * @class MOVI.stencilset.Stencil
  29. * @constructor
  30. * @param {Object} jsonObj The JSON object from which the new stencil
  31. * is created.
  32. * @param {String} namespace The namespace of the stencil set that defines this stencil
  33. */
  34. MOVI.stencilset.Stencil = function(jsonObject, propertyPackages, namespace) {
  35. // TODO: Doc for stencil attributes from JSON
  36. YAHOO.lang.augmentObject(this, jsonObject, true);
  37. if(this.propertyPackages) {
  38. var props = {};
  39. for(var propIndex in this.properties) {
  40. var prop = this.properties[propIndex];
  41. props[prop.id] = prop;
  42. }
  43. for(var i = 0; i < this.propertyPackages.length; i++) {
  44. var propPackName = this.propertyPackages[i];
  45. var propPack = propertyPackages[propPackName];
  46. if(propPack) {
  47. for(var j = 0; j < propPack.length; j++) {
  48. var prop = propPack[j];
  49. props[prop.id] = prop;
  50. }
  51. }
  52. }
  53. this.properties = [];
  54. for(var propKey in props) {
  55. if(!(props[propKey] instanceof Function)) {
  56. this.properties.push(props[propKey]);
  57. }
  58. }
  59. }
  60. this.stencilSetNamespace = namespace;
  61. }
  62. // TODO: Add convenience methods
  63. })();