datacontroller.js 315 B

123456789101112131415
  1. /**
  2. * @license Copyright (c) 2003-2016, CKSource - Frederico Knabben. All rights reserved.
  3. * For licensing, see LICENSE.md.
  4. */
  5. 'use strict';
  6. export default class DataController {
  7. constructor( modelDocument, dataProcessor ) {
  8. this.model = modelDocument;
  9. this.processor = dataProcessor;
  10. }
  11. destroy() {}
  12. }