/** * R3.Graph.Table * @param apiComponent * @constructor */ R3.Graph.Table = function( apiComponent ) { __RUNTIME_COMPONENT__; R3.Graph.call( this, true ); }; R3.Graph.Table.prototype = Object.create(R3.Component.prototype); R3.Graph.Table.prototype.constructor = R3.Graph.Table; /** * Updates the instance with the current state */ R3.Graph.Table.prototype.createInstance = function() { __CREATE_INSTANCE__; }; /** * Updates the instance with the current state */ R3.Graph.Table.prototype.updateInstance = function(property) { R3.Graph.prototype.updateInstance.call(this, property); };