• Home
  • Features
  • Pricing
  • Docs
  • Announcements
  • Sign In

moosetechnology / MooseIDE / 22714469042

05 Mar 2026 10:51AM UTC coverage: 65.862% (-0.06%) from 65.926%
22714469042

push

github

web-flow
Merge pull request #1596 from moosetechnology/bulk-editing

improvement to BulkEditing

0 of 34 new or added lines in 1 file covered. (0.0%)

204 existing lines in 18 files now uncovered.

21882 of 33224 relevant lines covered (65.86%)

1.32 hits per line

Source File
Press 'n' to go to next uncovered line, 'b' for previous

66.67
/src/MooseIDE-Export/MiNotebookModel.class.st
1
"
2
I am the model of the report builder.
3

4
I store a collection of cell models.
5

6
You can instantiate me with a moose notebook file (.ston):
7

8
```
9
builder := MiReportBuilder instantiateWith: '/path/to/notebook.ston' on: (MooseModel root at: 1).
10
```
11

12
Once a notebook is loaded, you can execute the notebook and export the reslut:
13

14
```
15
builder exportToTextAt: '/path/to/your/notebook.md' asFileReference
16
```
17

18
See export protocole (instance side) for more export methods.
19
"
20
Class {
21
        #name : 'MiNotebookModel',
22
        #superclass : 'MiAbstractModel',
23
        #instVars : [
24
                'mooseModel',
25
                'textEditedSource',
26
                'needToUpdate',
27
                'micDocument',
28
                'cellList',
29
                'context',
30
                'generatedDocument'
31
        ],
32
        #category : 'MooseIDE-Export-Notebook',
33
        #package : 'MooseIDE-Export',
34
        #tag : 'Notebook'
35
}
36

37
{ #category : 'accessing' }
38
MiNotebookModel >> entities [
2✔
39

2✔
40
        ^ mooseModel
2✔
41
]
2✔
42

43
{ #category : 'accessing' }
44
MiNotebookModel >> miSelectedItem [
×
45

×
UNCOV
46
        ^ self entities
×
UNCOV
47
]
×
48

49
{ #category : 'actions' }
50
MiNotebookModel >> mooseModel: aMooseModel [
2✔
51

2✔
52
        mooseModel := aMooseModel
2✔
53
]
2✔
STATUS · Troubleshooting · Open an Issue · Sales · Support · CAREERS · ENTERPRISE · START FREE · SCHEDULE DEMO
ANNOUNCEMENTS · TWITTER · TOS & SLA · Supported CI Services · What's a CI service? · Automated Testing

© 2026 Coveralls, Inc