aboutsummaryrefslogtreecommitdiffstats
path: root/ncomp-docker-model/src/main/xcore-gen/org/openecomp/ncomp/docker/ContainerMemoryStats.java
blob: 3a9f4fc680f584f69b6a8e56ac48f1abeaed23bc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
/*-
 * ============LICENSE_START==========================================
 * OPENECOMP - DCAE
 * ===================================================================
 * Copyright (c) 2017 AT&T Intellectual Property. All rights reserved.
 * ===================================================================
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *        http://www.apache.org/licenses/LICENSE-2.0 
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 * ============LICENSE_END============================================
 */
	
/**
 */
package org.openecomp.ncomp.docker;

import org.eclipse.emf.ecore.EObject;

/**
 * <!-- begin-user-doc -->
 * A representation of the model object '<em><b>Container Memory Stats</b></em>'.
 * <!-- end-user-doc -->
 *
 * <!-- begin-model-doc -->
 * "memory_stats" : {
 *         "stats" : {
 *            "total_pgmajfault" : 0,
 *            "cache" : 0,
 *            "mapped_file" : 0,
 *            "total_inactive_file" : 0,
 *            "pgpgout" : 414,
 *            "rss" : 6537216,
 *            "total_mapped_file" : 0,
 *            "writeback" : 0,
 *            "unevictable" : 0,
 *            "pgpgin" : 477,
 *            "total_unevictable" : 0,
 *            "pgmajfault" : 0,
 *            "total_rss" : 6537216,
 *            "total_rss_huge" : 6291456,
 *            "total_writeback" : 0,
 *            "total_inactive_anon" : 0,
 *            "rss_huge" : 6291456,
 *            "hierarchical_memory_limit" : 67108864,
 *            "total_pgfault" : 964,
 *            "total_active_file" : 0,
 *            "active_anon" : 6537216,
 *            "total_active_anon" : 6537216,
 *            "total_pgpgout" : 414,
 *            "total_cache" : 0,
 *            "inactive_anon" : 0,
 *            "active_file" : 0,
 *            "pgfault" : 964,
 *            "inactive_file" : 0,
 *            "total_pgpgin" : 477
 *         },
 *         "max_usage" : 6651904,
 *         "usage" : 6537216,
 *         "failcnt" : 0,
 *         "limit" : 67108864
 *      },
 * <!-- end-model-doc -->
 *
 * <p>
 * The following features are supported:
 * <ul>
 *   <li>{@link org.openecomp.ncomp.docker.ContainerMemoryStats#getTotal_pgmajfault <em>Total pgmajfault</em>}</li>
 *   <li>{@link org.openecomp.ncomp.docker.ContainerMemoryStats#getCache <em>Cache</em>}</li>
 *   <li>{@link org.openecomp.ncomp.docker.ContainerMemoryStats#getMapped_file <em>Mapped file</em>}</li>
 *   <li>{@link org.openecomp.ncomp.docker.ContainerMemoryStats#getTotal_inactive_file <em>Total inactive file</em>}</li>
 *   <li>{@link org.openecomp.ncomp.docker.ContainerMemoryStats#getPgpgout <em>Pgpgout</em>}</li>
 *   <li>{@link org.openecomp.ncomp.docker.ContainerMemoryStats#getRss <em>Rss</em>}</li>
 *   <li>{@link org.openecomp.ncomp.docker.ContainerMemoryStats#getTotal_mapped_file <em>Total mapped file</em>}</li>
 *   <li>{@link org.openecomp.ncomp.docker.ContainerMemoryStats#getWriteback <em>Writeback</em>}</li>
 *   <li>{@link org.openecomp.ncomp.docker.ContainerMemoryStats#getUnevictable <em>Unevictable</em>}</li>
 *   <li>{@link org.openecomp.ncomp.docker.ContainerMemoryStats#getPgpgin <em>Pgpgin</em>}</li>
 *   <li>{@link org.openecomp.ncomp.docker.ContainerMemoryStats#getTotal_unevictable <em>Total unevictable</em>}</li>
 *   <li>{@link org.openecomp.ncomp.docker.ContainerMemoryStats#getPgmajfault <em>Pgmajfault</em>}</li>
 *   <li>{@link org.openecomp.ncomp.docker.ContainerMemoryStats#getTotal_rss <em>Total rss</em>}</li>
 *   <li>{@link org.openecomp.ncomp.docker.ContainerMemoryStats#getTotal_rss_huge <em>Total rss huge</em>}</li>
 *   <li>{@link org.openecomp.ncomp.docker.ContainerMemoryStats#getTotal_writeback <em>Total writeback</em>}</li>
 *   <li>{@link org.openecomp.ncomp.docker.ContainerMemoryStats#getTotal_inactive_anon <em>Total inactive anon</em>}</li>
 *   <li>{@link org.openecomp.ncomp.docker.ContainerMemoryStats#getRss_huge <em>Rss huge</em>}</li>
 *   <li>{@link org.openecomp.ncomp.docker.ContainerMemoryStats#getHierarchical_memory_limit <em>Hierarchical memory limit</em>}</li>
 *   <li>{@link org.openecomp.ncomp.docker.ContainerMemoryStats#getTotal_pgfault <em>Total pgfault</em>}</li>
 *   <li>{@link org.openecomp.ncomp.docker.ContainerMemoryStats#getTotal_active_file <em>Total active file</em>}</li>
 *   <li>{@link org.openecomp.ncomp.docker.ContainerMemoryStats#getActive_anon <em>Active anon</em>}</li>
 *   <li>{@link org.openecomp.ncomp.docker.ContainerMemoryStats#getTotal_active_anon <em>Total active anon</em>}</li>
 *   <li>{@link org.openecomp.ncomp.docker.ContainerMemoryStats#getTotal_pgpgout <em>Total pgpgout</em>}</li>
 *   <li>{@link org.openecomp.ncomp.docker.ContainerMemoryStats#getTotal_cache <em>Total cache</em>}</li>
 *   <li>{@link org.openecomp.ncomp.docker.ContainerMemoryStats#getInactive_anon <em>Inactive anon</em>}</li>
 *   <li>{@link org.openecomp.ncomp.docker.ContainerMemoryStats#getActive_file <em>Active file</em>}</li>
 *   <li>{@link org.openecomp.ncomp.docker.ContainerMemoryStats#getPgfault <em>Pgfault</em>}</li>
 *   <li>{@link org.openecomp.ncomp.docker.ContainerMemoryStats#getInactive_file <em>Inactive file</em>}</li>
 *   <li>{@link org.openecomp.ncomp.docker.ContainerMemoryStats#getTotal_pgpgin <em>Total pgpgin</em>}</li>
 * </ul>
 * </p>
 *
 * @see org.openecomp.ncomp.docker.DockerPackage#getContainerMemoryStats()
 * @model
 * @generated
 */
public interface ContainerMemoryStats extends EObject {

	/**
	 * Returns the value of the '<em><b>Total pgmajfault</b></em>' attribute.
	 * <!-- begin-user-doc -->
	 * <p>
	 * If the meaning of the '<em>Total pgmajfault</em>' attribute isn't clear,
	 * there really should be more of a description here...
	 * </p>
	 * <!-- end-user-doc -->
	 * @return the value of the '<em>Total pgmajfault</em>' attribute.
	 * @see #setTotal_pgmajfault(int)
	 * @see org.openecomp.ncomp.docker.DockerPackage#getContainerMemoryStats_Total_pgmajfault()
	 * @model unique="false"
	 * @generated
	 */
	int getTotal_pgmajfault();

	/**
	 * Sets the value of the '{@link org.openecomp.ncomp.docker.ContainerMemoryStats#getTotal_pgmajfault <em>Total pgmajfault</em>}' attribute.
	 * <!-- begin-user-doc -->
	 * <!-- end-user-doc -->
	 * @param value the new value of the '<em>Total pgmajfault</em>' attribute.
	 * @see #getTotal_pgmajfault()
	 * @generated
	 */
	void setTotal_pgmajfault(int value);

	/**
	 * Returns the value of the '<em><b>Cache</b></em>' attribute.
	 * <!-- begin-user-doc -->
	 * <p>
	 * If the meaning of the '<em>Cache</em>' attribute isn't clear,
	 * there really should be more of a description here...
	 * </p>
	 * <!-- end-user-doc -->
	 * @return the value of the '<em>Cache</em>' attribute.
	 * @see #setCache(int)
	 * @see org.openecomp.ncomp.docker.DockerPackage#getContainerMemoryStats_Cache()
	 * @model unique="false"
	 * @generated
	 */
	int getCache();

	/**
	 * Sets the value of the '{@link org.openecomp.ncomp.docker.ContainerMemoryStats#getCache <em>Cache</em>}' attribute.
	 * <!-- begin-user-doc -->
	 * <!-- end-user-doc -->
	 * @param value the new value of the '<em>Cache</em>' attribute.
	 * @see #getCache()
	 * @generated
	 */
	void setCache(int value);

	/**
	 * Returns the value of the '<em><b>Mapped file</b></em>' attribute.
	 * <!-- begin-user-doc -->
	 * <p>
	 * If the meaning of the '<em>Mapped file</em>' attribute isn't clear,
	 * there really should be more of a description here...
	 * </p>
	 * <!-- end-user-doc -->
	 * @return the value of the '<em>Mapped file</em>' attribute.
	 * @see #setMapped_file(int)
	 * @see org.openecomp.ncomp.docker.DockerPackage#getContainerMemoryStats_Mapped_file()
	 * @model unique="false"
	 * @generated
	 */
	int getMapped_file();

	/**
	 * Sets the value of the '{@link org.openecomp.ncomp.docker.ContainerMemoryStats#getMapped_file <em>Mapped file</em>}' attribute.
	 * <!-- begin-user-doc -->
	 * <!-- end-user-doc -->
	 * @param value the new value of the '<em>Mapped file</em>' attribute.
	 * @see #getMapped_file()
	 * @generated
	 */
	void setMapped_file(int value);

	/**
	 * Returns the value of the '<em><b>Total inactive file</b></em>' attribute.
	 * <!-- begin-user-doc -->
	 * <p>
	 * If the meaning of the '<em>Total inactive file</em>' attribute isn't clear,
	 * there really should be more of a description here...
	 * </p>
	 * <!-- end-user-doc -->
	 * @return the value of the '<em>Total inactive file</em>' attribute.
	 * @see #setTotal_inactive_file(int)
	 * @see org.openecomp.ncomp.docker.DockerPackage#getContainerMemoryStats_Total_inactive_file()
	 * @model unique="false"
	 * @generated
	 */
	int getTotal_inactive_file();

	/**
	 * Sets the value of the '{@link org.openecomp.ncomp.docker.ContainerMemoryStats#getTotal_inactive_file <em>Total inactive file</em>}' attribute.
	 * <!-- begin-user-doc -->
	 * <!-- end-user-doc -->
	 * @param value the new value of the '<em>Total inactive file</em>' attribute.
	 * @see #getTotal_inactive_file()
	 * @generated
	 */
	void setTotal_inactive_file(int value);

	/**
	 * Returns the value of the '<em><b>Pgpgout</b></em>' attribute.
	 * <!-- begin-user-doc -->
	 * <p>
	 * If the meaning of the '<em>Pgpgout</em>' attribute isn't clear,
	 * there really should be more of a description here...
	 * </p>
	 * <!-- end-user-doc -->
	 * @return the value of the '<em>Pgpgout</em>' attribute.
	 * @see #setPgpgout(int)
	 * @see org.openecomp.ncomp.docker.DockerPackage#getContainerMemoryStats_Pgpgout()
	 * @model unique="false"
	 * @generated
	 */
	int getPgpgout();

	/**
	 * Sets the value of the '{@link org.openecomp.ncomp.docker.ContainerMemoryStats#getPgpgout <em>Pgpgout</em>}' attribute.
	 * <!-- begin-user-doc -->
	 * <!-- end-user-doc -->
	 * @param value the new value of the '<em>Pgpgout</em>' attribute.
	 * @see #getPgpgout()
	 * @generated
	 */
	void setPgpgout(int value);

	/**
	 * Returns the value of the '<em><b>Rss</b></em>' attribute.
	 * <!-- begin-user-doc -->
	 * <p>
	 * If the meaning of the '<em>Rss</em>' attribute isn't clear,
	 * there really should be more of a description here...
	 * </p>
	 * <!-- end-user-doc -->
	 * @return the value of the '<em>Rss</em>' attribute.
	 * @see #setRss(int)
	 * @see org.openecomp.ncomp.docker.DockerPackage#getContainerMemoryStats_Rss()
	 * @model unique="false"
	 * @generated
	 */
	int getRss();

	/**
	 * Sets the value of the '{@link org.openecomp.ncomp.docker.ContainerMemoryStats#getRss <em>Rss</em>}' attribute.
	 * <!-- begin-user-doc -->
	 * <!-- end-user-doc -->
	 * @param value the new value of the '<em>Rss</em>' attribute.
	 * @see #getRss()
	 * @generated
	 */
	void setRss(int value);

	/**
	 * Returns the value of the '<em><b>Total mapped file</b></em>' attribute.
	 * <!-- begin-user-doc -->
	 * <p>
	 * If the meaning of the '<em>Total mapped file</em>' attribute isn't clear,
	 * there really should be more of a description here...
	 * </p>
	 * <!-- end-user-doc -->
	 * @return the value of the '<em>Total mapped file</em>' attribute.
	 * @see #setTotal_mapped_file(int)
	 * @see org.openecomp.ncomp.docker.DockerPackage#getContainerMemoryStats_Total_mapped_file()
	 * @model unique="false"
	 * @generated
	 */
	int getTotal_mapped_file();

	/**
	 * Sets the value of the '{@link org.openecomp.ncomp.docker.ContainerMemoryStats#getTotal_mapped_file <em>Total mapped file</em>}' attribute.
	 * <!-- begin-user-doc -->
	 * <!-- end-user-doc -->
	 * @param value the new value of the '<em>Total mapped file</em>' attribute.
	 * @see #getTotal_mapped_file()
	 * @generated
	 */
	void setTotal_mapped_file(int value);

	/**
	 * Returns the value of the '<em><b>Writeback</b></em>' attribute.
	 * <!-- begin-user-doc -->
	 * <p>
	 * If the meaning of the '<em>Writeback</em>' attribute isn't clear,
	 * there really should be more of a description here...
	 * </p>
	 * <!-- end-user-doc -->
	 * @return the value of the '<em>Writeback</em>' attribute.
	 * @see #setWriteback(int)
	 * @see org.openecomp.ncomp.docker.DockerPackage#getContainerMemoryStats_Writeback()
	 * @model unique="false"
	 * @generated
	 */
	int getWriteback();

	/**
	 * Sets the value of the '{@link org.openecomp.ncomp.docker.ContainerMemoryStats#getWriteback <em>Writeback</em>}' attribute.
	 * <!-- begin-user-doc -->
	 * <!-- end-user-doc -->
	 * @param value the new value of the '<em>Writeback</em>' attribute.
	 * @see #getWriteback()
	 * @generated
	 */
	void setWriteback(int value);

	/**
	 * Returns the value of the '<em><b>Unevictable</b></em>' attribute.
	 * <!-- begin-user-doc -->
	 * <p>
	 * If the meaning of the '<em>Unevictable</em>' attribute isn't clear,
	 * there really should be more of a description here...
	 * </p>
	 * <!-- end-user-doc -->
	 * @return the value of the '<em>Unevictable</em>' attribute.
	 * @see #setUnevictable(int)
	 * @see org.openecomp.ncomp.docker.DockerPackage#getContainerMemoryStats_Unevictable()
	 * @model unique="false"
	 * @generated
	 */
	int getUnevictable();

	/**
	 * Sets the value of the '{@link org.openecomp.ncomp.docker.ContainerMemoryStats#getUnevictable <em>Unevictable</em>}' attribute.
	 * <!-- begin-user-doc -->
	 * <!-- end-user-doc -->
	 * @param value the new value of the '<em>Unevictable</em>' attribute.
	 * @see #getUnevictable()
	 * @generated
	 */
	void setUnevictable(int value);

	/**
	 * Returns the value of the '<em><b>Pgpgin</b></em>' attribute.
	 * <!-- begin-user-doc -->
	 * <p>
	 * If the meaning of the '<em>Pgpgin</em>' attribute isn't clear,
	 * there really should be more of a description here...
	 * </p>
	 * <!-- end-user-doc -->
	 * @return the value of the '<em>Pgpgin</em>' attribute.
	 * @see #setPgpgin(int)
	 * @see org.openecomp.ncomp.docker.DockerPackage#getContainerMemoryStats_Pgpgin()
	 * @model unique="false"
	 * @generated
	 */
	int getPgpgin();

	/**
	 * Sets the value of the '{@link org.openecomp.ncomp.docker.ContainerMemoryStats#getPgpgin <em>Pgpgin</em>}' attribute.
	 * <!-- begin-user-doc -->
	 * <!-- end-user-doc -->
	 * @param value the new value of the '<em>Pgpgin</em>' attribute.
	 * @see #getPgpgin()
	 * @generated
	 */
	void setPgpgin(int value);

	/**
	 * Returns the value of the '<em><b>Total unevictable</b></em>' attribute.
	 * <!-- begin-user-doc -->
	 * <p>
	 * If the meaning of the '<em>Total unevictable</em>' attribute isn't clear,
	 * there really should be more of a description here...
	 * </p>
	 * <!-- end-user-doc -->
	 * @return the value of the '<em>Total unevictable</em>' attribute.
	 * @see #setTotal_unevictable(int)
	 * @see org.openecomp.ncomp.docker.DockerPackage#getContainerMemoryStats_Total_unevictable()
	 * @model unique="false"
	 * @generated
	 */
	int getTotal_unevictable();

	/**
	 * Sets the value of the '{@link org.openecomp.ncomp.docker.ContainerMemoryStats#getTotal_unevictable <em>Total unevictable</em>}' attribute.
	 * <!-- begin-user-doc -->
	 * <!-- end-user-doc -->
	 * @param value the new value of the '<em>Total unevictable</em>' attribute.
	 * @see #getTotal_unevictable()
	 * @generated
	 */
	void setTotal_unevictable(int value);

	/**
	 * Returns the value of the '<em><b>Pgmajfault</b></em>' attribute.
	 * <!-- begin-user-doc -->
	 * <p>
	 * If the meaning of the '<em>Pgmajfault</em>' attribute isn't clear,
	 * there really should be more of a description here...
	 * </p>
	 * <!-- end-user-doc -->
	 * @return the value of the '<em>Pgmajfault</em>' attribute.
	 * @see #setPgmajfault(int)
	 * @see org.openecomp.ncomp.docker.DockerPackage#getContainerMemoryStats_Pgmajfault()
	 * @model unique="false"
	 * @generated
	 */
	int getPgmajfault();

	/**
	 * Sets the value of the '{@link org.openecomp.ncomp.docker.ContainerMemoryStats#getPgmajfault <em>Pgmajfault</em>}' attribute.
	 * <!-- begin-user-doc -->
	 * <!-- end-user-doc -->
	 * @param value the new value of the '<em>Pgmajfault</em>' attribute.
	 * @see #getPgmajfault()
	 * @generated
	 */
	void setPgmajfault(int value);

	/**
	 * Returns the value of the '<em><b>Total rss</b></em>' attribute.
	 * <!-- begin-user-doc -->
	 * <p>
	 * If the meaning of the '<em>Total rss</em>' attribute isn't clear,
	 * there really should be more of a description here...
	 * </p>
	 * <!-- end-user-doc -->
	 * @return the value of the '<em>Total rss</em>' attribute.
	 * @see #setTotal_rss(int)
	 * @see org.openecomp.ncomp.docker.DockerPackage#getContainerMemoryStats_Total_rss()
	 * @model unique="false"
	 * @generated
	 */
	int getTotal_rss();

	/**
	 * Sets the value of the '{@link org.openecomp.ncomp.docker.ContainerMemoryStats#getTotal_rss <em>Total rss</em>}' attribute.
	 * <!-- begin-user-doc -->
	 * <!-- end-user-doc -->
	 * @param value the new value of the '<em>Total rss</em>' attribute.
	 * @see #getTotal_rss()
	 * @generated
	 */
	void setTotal_rss(int value);

	/**
	 * Returns the value of the '<em><b>Total rss huge</b></em>' attribute.
	 * <!-- begin-user-doc -->
	 * <p>
	 * If the meaning of the '<em>Total rss huge</em>' attribute isn't clear,
	 * there really should be more of a description here...
	 * </p>
	 * <!-- end-user-doc -->
	 * @return the value of the '<em>Total rss huge</em>' attribute.
	 * @see #setTotal_rss_huge(int)
	 * @see org.openecomp.ncomp.docker.DockerPackage#getContainerMemoryStats_Total_rss_huge()
	 * @model unique="false"
	 * @generated
	 */
	int getTotal_rss_huge();

	/**
	 * Sets the value of the '{@link org.openecomp.ncomp.docker.ContainerMemoryStats#getTotal_rss_huge <em>Total rss huge</em>}' attribute.
	 * <!-- begin-user-doc -->
	 * <!-- end-user-doc -->
	 * @param value the new value of the '<em>Total rss huge</em>' attribute.
	 * @see #getTotal_rss_huge()
	 * @generated
	 */
	void setTotal_rss_huge(int value);

	/**
	 * Returns the value of the '<em><b>Total writeback</b></em>' attribute.
	 * <!-- begin-user-doc -->
	 * <p>
	 * If the meaning of the '<em>Total writeback</em>' attribute isn't clear,
	 * there really should be more of a description here...
	 * </p>
	 * <!-- end-user-doc -->
	 * @return the value of the '<em>Total writeback</em>' attribute.
	 * @see #setTotal_writeback(int)
	 * @see org.openecomp.ncomp.docker.DockerPackage#getContainerMemoryStats_Total_writeback()
	 * @model unique="false"
	 * @generated
	 */
	int getTotal_writeback();

	/**
	 * Sets the value of the '{@link org.openecomp.ncomp.docker.ContainerMemoryStats#getTotal_writeback <em>Total writeback</em>}' attribute.
	 * <!-- begin-user-doc -->
	 * <!-- end-user-doc -->
	 * @param value the new value of the '<em>Total writeback</em>' attribute.
	 * @see #getTotal_writeback()
	 * @generated
	 */
	void setTotal_writeback(int value);

	/**
	 * Returns the value of the '<em><b>Total inactive anon</b></em>' attribute.
	 * <!-- begin-user-doc -->
	 * <p>
	 * If the meaning of the '<em>Total inactive anon</em>' attribute isn't clear,
	 * there really should be more of a description here...
	 * </p>
	 * <!-- end-user-doc -->
	 * @return the value of the '<em>Total inactive anon</em>' attribute.
	 * @see #setTotal_inactive_anon(int)
	 * @see org.openecomp.ncomp.docker.DockerPackage#getContainerMemoryStats_Total_inactive_anon()
	 * @model unique="false"
	 * @generated
	 */
	int getTotal_inactive_anon();

	/**
	 * Sets the value of the '{@link org.openecomp.ncomp.docker.ContainerMemoryStats#getTotal_inactive_anon <em>Total inactive anon</em>}' attribute.
	 * <!-- begin-user-doc -->
	 * <!-- end-user-doc -->
	 * @param value the new value of the '<em>Total inactive anon</em>' attribute.
	 * @see #getTotal_inactive_anon()
	 * @generated
	 */
	void setTotal_inactive_anon(int value);

	/**
	 * Returns the value of the '<em><b>Rss huge</b></em>' attribute.
	 * <!-- begin-user-doc -->
	 * <p>
	 * If the meaning of the '<em>Rss huge</em>' attribute isn't clear,
	 * there really should be more of a description here...
	 * </p>
	 * <!-- end-user-doc -->
	 * @return the value of the '<em>Rss huge</em>' attribute.
	 * @see #setRss_huge(int)
	 * @see org.openecomp.ncomp.docker.DockerPackage#getContainerMemoryStats_Rss_huge()
	 * @model unique="false"
	 * @generated
	 */
	int getRss_huge();

	/**
	 * Sets the value of the '{@link org.openecomp.ncomp.docker.ContainerMemoryStats#getRss_huge <em>Rss huge</em>}' attribute.
	 * <!-- begin-user-doc -->
	 * <!-- end-user-doc -->
	 * @param value the new value of the '<em>Rss huge</em>' attribute.
	 * @see #getRss_huge()
	 * @generated
	 */
	void setRss_huge(int value);

	/**
	 * Returns the value of the '<em><b>Hierarchical memory limit</b></em>' attribute.
	 * <!-- begin-user-doc -->
	 * <p>
	 * If the meaning of the '<em>Hierarchical memory limit</em>' attribute isn't clear,
	 * there really should be more of a description here...
	 * </p>
	 * <!-- end-user-doc -->
	 * @return the value of the '<em>Hierarchical memory limit</em>' attribute.
	 * @see #setHierarchical_memory_limit(int)
	 * @see org.openecomp.ncomp.docker.DockerPackage#getContainerMemoryStats_Hierarchical_memory_limit()
	 * @model unique="false"
	 * @generated
	 */
	int getHierarchical_memory_limit();

	/**
	 * Sets the value of the '{@link org.openecomp.ncomp.docker.ContainerMemoryStats#getHierarchical_memory_limit <em>Hierarchical memory limit</em>}' attribute.
	 * <!-- begin-user-doc -->
	 * <!-- end-user-doc -->
	 * @param value the new value of the '<em>Hierarchical memory limit</em>' attribute.
	 * @see #getHierarchical_memory_limit()
	 * @generated
	 */
	void setHierarchical_memory_limit(int value);

	/**
	 * Returns the value of the '<em><b>Total pgfault</b></em>' attribute.
	 * <!-- begin-user-doc -->
	 * <p>
	 * If the meaning of the '<em>Total pgfault</em>' attribute isn't clear,
	 * there really should be more of a description here...
	 * </p>
	 * <!-- end-user-doc -->
	 * @return the value of the '<em>Total pgfault</em>' attribute.
	 * @see #setTotal_pgfault(int)
	 * @see org.openecomp.ncomp.docker.DockerPackage#getContainerMemoryStats_Total_pgfault()
	 * @model unique="false"
	 * @generated
	 */
	int getTotal_pgfault();

	/**
	 * Sets the value of the '{@link org.openecomp.ncomp.docker.ContainerMemoryStats#getTotal_pgfault <em>Total pgfault</em>}' attribute.
	 * <!-- begin-user-doc -->
	 * <!-- end-user-doc -->
	 * @param value the new value of the '<em>Total pgfault</em>' attribute.
	 * @see #getTotal_pgfault()
	 * @generated
	 */
	void setTotal_pgfault(int value);

	/**
	 * Returns the value of the '<em><b>Total active file</b></em>' attribute.
	 * <!-- begin-user-doc -->
	 * <p>
	 * If the meaning of the '<em>Total active file</em>' attribute isn't clear,
	 * there really should be more of a description here...
	 * </p>
	 * <!-- end-user-doc -->
	 * @return the value of the '<em>Total active file</em>' attribute.
	 * @see #setTotal_active_file(int)
	 * @see org.openecomp.ncomp.docker.DockerPackage#getContainerMemoryStats_Total_active_file()
	 * @model unique="false"
	 * @generated
	 */
	int getTotal_active_file();

	/**
	 * Sets the value of the '{@link org.openecomp.ncomp.docker.ContainerMemoryStats#getTotal_active_file <em>Total active file</em>}' attribute.
	 * <!-- begin-user-doc -->
	 * <!-- end-user-doc -->
	 * @param value the new value of the '<em>Total active file</em>' attribute.
	 * @see #getTotal_active_file()
	 * @generated
	 */
	void setTotal_active_file(int value);

	/**
	 * Returns the value of the '<em><b>Active anon</b></em>' attribute.
	 * <!-- begin-user-doc -->
	 * <p>
	 * If the meaning of the '<em>Active anon</em>' attribute isn't clear,
	 * there really should be more of a description here...
	 * </p>
	 * <!-- end-user-doc -->
	 * @return the value of the '<em>Active anon</em>' attribute.
	 * @see #setActive_anon(int)
	 * @see org.openecomp.ncomp.docker.DockerPackage#getContainerMemoryStats_Active_anon()
	 * @model unique="false"
	 * @generated
	 */
	int getActive_anon();

	/**
	 * Sets the value of the '{@link org.openecomp.ncomp.docker.ContainerMemoryStats#getActive_anon <em>Active anon</em>}' attribute.
	 * <!-- begin-user-doc -->
	 * <!-- end-user-doc -->
	 * @param value the new value of the '<em>Active anon</em>' attribute.
	 * @see #getActive_anon()
	 * @generated
	 */
	void setActive_anon(int value);

	/**
	 * Returns the value of the '<em><b>Total active anon</b></em>' attribute.
	 * <!-- begin-user-doc -->
	 * <p>
	 * If the meaning of the '<em>Total active anon</em>' attribute isn't clear,
	 * there really should be more of a description here...
	 * </p>
	 * <!-- end-user-doc -->
	 * @return the value of the '<em>Total active anon</em>' attribute.
	 * @see #setTotal_active_anon(int)
	 * @see org.openecomp.ncomp.docker.DockerPackage#getContainerMemoryStats_Total_active_anon()
	 * @model unique="false"
	 * @generated
	 */
	int getTotal_active_anon();

	/**
	 * Sets the value of the '{@link org.openecomp.ncomp.docker.ContainerMemoryStats#getTotal_active_anon <em>Total active anon</em>}' attribute.
	 * <!-- begin-user-doc -->
	 * <!-- end-user-doc -->
	 * @param value the new value of the '<em>Total active anon</em>' attribute.
	 * @see #getTotal_active_anon()
	 * @generated
	 */
	void setTotal_active_anon(int value);

	/**
	 * Returns the value of the '<em><b>Total pgpgout</b></em>' attribute.
	 * <!-- begin-user-doc -->
	 * <p>
	 * If the meaning of the '<em>Total pgpgout</em>' attribute isn't clear,
	 * there really should be more of a description here...
	 * </p>
	 * <!-- end-user-doc -->
	 * @return the value of the '<em>Total pgpgout</em>' attribute.
	 * @see #setTotal_pgpgout(int)
	 * @see org.openecomp.ncomp.docker.DockerPackage#getContainerMemoryStats_Total_pgpgout()
	 * @model unique="false"
	 * @generated
	 */
	int getTotal_pgpgout();

	/**
	 * Sets the value of the '{@link org.openecomp.ncomp.docker.ContainerMemoryStats#getTotal_pgpgout <em>Total pgpgout</em>}' attribute.
	 * <!-- begin-user-doc -->
	 * <!-- end-user-doc -->
	 * @param value the new value of the '<em>Total pgpgout</em>' attribute.
	 * @see #getTotal_pgpgout()
	 * @generated
	 */
	void setTotal_pgpgout(int value);

	/**
	 * Returns the value of the '<em><b>Total cache</b></em>' attribute.
	 * <!-- begin-user-doc -->
	 * <p>
	 * If the meaning of the '<em>Total cache</em>' attribute isn't clear,
	 * there really should be more of a description here...
	 * </p>
	 * <!-- end-user-doc -->
	 * @return the value of the '<em>Total cache</em>' attribute.
	 * @see #setTotal_cache(int)
	 * @see org.openecomp.ncomp.docker.DockerPackage#getContainerMemoryStats_Total_cache()
	 * @model unique="false"
	 * @generated
	 */
	int getTotal_cache();

	/**
	 * Sets the value of the '{@link org.openecomp.ncomp.docker.ContainerMemoryStats#getTotal_cache <em>Total cache</em>}' attribute.
	 * <!-- begin-user-doc -->
	 * <!-- end-user-doc -->
	 * @param value the new value of the '<em>Total cache</em>' attribute.
	 * @see #getTotal_cache()
	 * @generated
	 */
	void setTotal_cache(int value);

	/**
	 * Returns the value of the '<em><b>Inactive anon</b></em>' attribute.
	 * <!-- begin-user-doc -->
	 * <p>
	 * If the meaning of the '<em>Inactive anon</em>' attribute isn't clear,
	 * there really should be more of a description here...
	 * </p>
	 * <!-- end-user-doc -->
	 * @return the value of the '<em>Inactive anon</em>' attribute.
	 * @see #setInactive_anon(int)
	 * @see org.openecomp.ncomp.docker.DockerPackage#getContainerMemoryStats_Inactive_anon()
	 * @model unique="false"
	 * @generated
	 */
	int getInactive_anon();

	/**
	 * Sets the value of the '{@link org.openecomp.ncomp.docker.ContainerMemoryStats#getInactive_anon <em>Inactive anon</em>}' attribute.
	 * <!-- begin-user-doc -->
	 * <!-- end-user-doc -->
	 * @param value the new value of the '<em>Inactive anon</em>' attribute.
	 * @see #getInactive_anon()
	 * @generated
	 */
	void setInactive_anon(int value);

	/**
	 * Returns the value of the '<em><b>Active file</b></em>' attribute.
	 * <!-- begin-user-doc -->
	 * <p>
	 * If the meaning of the '<em>Active file</em>' attribute isn't clear,
	 * there really should be more of a description here...
	 * </p>
	 * <!-- end-user-doc -->
	 * @return the value of the '<em>Active file</em>' attribute.
	 * @see #setActive_file(int)
	 * @see org.openecomp.ncomp.docker.DockerPackage#getContainerMemoryStats_Active_file()
	 * @model unique="false"
	 * @generated
	 */
	int getActive_file();

	/**
	 * Sets the value of the '{@link org.openecomp.ncomp.docker.ContainerMemoryStats#getActive_file <em>Active file</em>}' attribute.
	 * <!-- begin-user-doc -->
	 * <!-- end-user-doc -->
	 * @param value the new value of the '<em>Active file</em>' attribute.
	 * @see #getActive_file()
	 * @generated
	 */
	void setActive_file(int value);

	/**
	 * Returns the value of the '<em><b>Pgfault</b></em>' attribute.
	 * <!-- begin-user-doc -->
	 * <p>
	 * If the meaning of the '<em>Pgfault</em>' attribute isn't clear,
	 * there really should be more of a description here...
	 * </p>
	 * <!-- end-user-doc -->
	 * @return the value of the '<em>Pgfault</em>' attribute.
	 * @see #setPgfault(int)
	 * @see org.openecomp.ncomp.docker.DockerPackage#getContainerMemoryStats_Pgfault()
	 * @model unique="false"
	 * @generated
	 */
	int getPgfault();

	/**
	 * Sets the value of the '{@link org.openecomp.ncomp.docker.ContainerMemoryStats#getPgfault <em>Pgfault</em>}' attribute.
	 * <!-- begin-user-doc -->
	 * <!-- end-user-doc -->
	 * @param value the new value of the '<em>Pgfault</em>' attribute.
	 * @see #getPgfault()
	 * @generated
	 */
	void setPgfault(int value);

	/**
	 * Returns the value of the '<em><b>Inactive file</b></em>' attribute.
	 * <!-- begin-user-doc -->
	 * <p>
	 * If the meaning of the '<em>Inactive file</em>' attribute isn't clear,
	 * there really should be more of a description here...
	 * </p>
	 * <!-- end-user-doc -->
	 * @return the value of the '<em>Inactive file</em>' attribute.
	 * @see #setInactive_file(int)
	 * @see org.openecomp.ncomp.docker.DockerPackage#getContainerMemoryStats_Inactive_file()
	 * @model unique="false"
	 * @generated
	 */
	int getInactive_file();

	/**
	 * Sets the value of the '{@link org.openecomp.ncomp.docker.ContainerMemoryStats#getInactive_file <em>Inactive file</em>}' attribute.
	 * <!-- begin-user-doc -->
	 * <!-- end-user-doc -->
	 * @param value the new value of the '<em>Inactive file</em>' attribute.
	 * @see #getInactive_file()
	 * @generated
	 */
	void setInactive_file(int value);

	/**
	 * Returns the value of the '<em><b>Total pgpgin</b></em>' attribute.
	 * <!-- begin-user-doc -->
	 * <p>
	 * If the meaning of the '<em>Total pgpgin</em>' attribute isn't clear,
	 * there really should be more of a description here...
	 * </p>
	 * <!-- end-user-doc -->
	 * @return the value of the '<em>Total pgpgin</em>' attribute.
	 * @see #setTotal_pgpgin(int)
	 * @see org.openecomp.ncomp.docker.DockerPackage#getContainerMemoryStats_Total_pgpgin()
	 * @model unique="false"
	 * @generated
	 */
	int getTotal_pgpgin();

	/**
	 * Sets the value of the '{@link org.openecomp.ncomp.docker.ContainerMemoryStats#getTotal_pgpgin <em>Total pgpgin</em>}' attribute.
	 * <!-- begin-user-doc -->
	 * <!-- end-user-doc -->
	 * @param value the new value of the '<em>Total pgpgin</em>' attribute.
	 * @see #getTotal_pgpgin()
	 * @generated
	 */
	void setTotal_pgpgin(int value);
} // ContainerMemoryStats