| import { FormSOP } from '../../libappsop/formsop'; | 
| import { MatrixEditorSOP } from '../../libappsop/matrixeditorsop'; | 
| import { DialogDummy } from '../dialogs/dialog.dummy'; | 
|   | 
| export class FormBlendingPlan extends FormSOP { | 
|   public meBlendingPlan = new MatrixEditorBlendingPlan(); | 
|   | 
|   public constructor() { | 
|     super('FormBlendingPlan'); | 
|   } | 
| } | 
|   | 
| export class MatrixEditorBlendingPlan extends MatrixEditorSOP<DialogDummy> { | 
|   public static readonly title = 'Blending Plan'; | 
|   | 
|   public constructor() { | 
|     super('MatrixEditorPISPIP', 'matrixeditorContextMenuPISPIP', new DialogDummy()); | 
|   } | 
| } |