OLD | NEW |
1 /* | 1 /* |
2 * Copyright 2010, Google Inc. | 2 * Copyright 2010, Google Inc. |
3 * All rights reserved. | 3 * All rights reserved. |
4 * | 4 * |
5 * Redistribution and use in source and binary forms, with or without | 5 * Redistribution and use in source and binary forms, with or without |
6 * modification, are permitted provided that the following conditions are | 6 * modification, are permitted provided that the following conditions are |
7 * met: | 7 * met: |
8 * | 8 * |
9 * * Redistributions of source code must retain the above copyright | 9 * * Redistributions of source code must retain the above copyright |
10 * notice, this list of conditions and the following disclaimer. | 10 * notice, this list of conditions and the following disclaimer. |
(...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
48 o3d.NamedObject.call(this); | 48 o3d.NamedObject.call(this); |
49 }; | 49 }; |
50 o3d.inherit('RawData', 'NamedObject'); | 50 o3d.inherit('RawData', 'NamedObject'); |
51 | 51 |
52 | 52 |
53 /** | 53 /** |
54 * Returns the raw data as a string. The data must be a valid utf-8 string | 54 * Returns the raw data as a string. The data must be a valid utf-8 string |
55 * and the uri must end in .json, .txt, .xml, .ini or .csv | 55 * and the uri must end in .json, .txt, .xml, .ini or .csv |
56 * @type {string} | 56 * @type {string} |
57 */ | 57 */ |
58 o3d.RawData.prototype.string_value = ''; | 58 o3d.RawData.prototype.stringValue = ''; |
59 | 59 |
60 | 60 |
61 /** | 61 /** |
62 * The data as an image if it is an image. | 62 * The data as an image if it is an image. |
63 * @type {Image} | 63 * @type {Image} |
64 * @private | 64 * @private |
65 */ | 65 */ |
66 o3d.RawData.prototype.image_ = null; | 66 o3d.RawData.prototype.image_ = null; |
67 | 67 |
68 | 68 |
(...skipping 25 matching lines...) Expand all Loading... |
94 /** | 94 /** |
95 * Flushes the memory resources associated with this data object, | 95 * Flushes the memory resources associated with this data object, |
96 * but keeps a cache in case the data object is used later. | 96 * but keeps a cache in case the data object is used later. |
97 */ | 97 */ |
98 o3d.RawData.prototype.flush = function() { | 98 o3d.RawData.prototype.flush = function() { |
99 o3d.notImplemented(); | 99 o3d.notImplemented(); |
100 }; | 100 }; |
101 | 101 |
102 | 102 |
103 | 103 |
OLD | NEW |