~berthold-daum/zora/trunk

« back to all changes in this revision

Viewing changes to com.bdaum.zoom.model/src/com/bdaum/zoom/cat/model/Slide_typeImpl.java

  • Committer: bdaum
  • Date: 2015-12-26 10:21:51 UTC
  • Revision ID: berthold.daum@bdaum.de-20151226102151-44f1j5113167thb9
VersionĀ 2.4.0

Show diffs side-by-side

added added

removed removed

Lines of Context:
34
34
         * @param duration - Property
35
35
         * @param fadeOut - Property
36
36
         * @param effect - Property
 
37
         * @param noVoice - Property
37
38
         */
38
39
        public Slide_typeImpl(String caption, int sequenceNo, String description,
39
40
                        int layout, int delay, int fadeIn, int duration, int fadeOut,
40
 
                        int effect) {
 
41
                        int effect, boolean noVoice) {
41
42
                super();
42
43
                this.caption = caption;
43
44
                this.sequenceNo = sequenceNo;
48
49
                this.duration = duration;
49
50
                this.fadeOut = fadeOut;
50
51
                this.effect = effect;
 
52
                this.noVoice = noVoice;
51
53
 
52
54
        }
53
55
 
254
256
                return effect;
255
257
        }
256
258
 
 
259
        /* *** Property noVoice *** */
 
260
 
 
261
        private boolean noVoice;
 
262
 
 
263
        /**
 
264
         * Set value of property noVoice
 
265
         *
 
266
         * @param _value - new field value
 
267
         */
 
268
        public void setNoVoice(boolean _value) {
 
269
                noVoice = _value;
 
270
        }
 
271
 
 
272
        /**
 
273
         * Get value of property noVoice
 
274
         *
 
275
         * @return - value of field noVoice
 
276
         */
 
277
        public boolean getNoVoice() {
 
278
                return noVoice;
 
279
        }
 
280
 
257
281
        /* ----- Equality ----- */
258
282
 
259
283
        /**