~berthold-daum/zora/trunk

« back to all changes in this revision

Viewing changes to com.bdaum.zoom.model/src/com/bdaum/zoom/cat/model/group/SmartCollectionImpl.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:
37
37
         * @param colorCode - Property
38
38
         * @param lastAccessDate - Property
39
39
         * @param generation - Property
 
40
         * @param perspective - Property
40
41
         * @param postProcessor - Arc
41
42
         */
42
43
        public SmartCollectionImpl(String name, boolean system, boolean album,
43
44
                        boolean adhoc, boolean network, String description, int colorCode,
44
 
                        Date lastAccessDate, int generation, PostProcessor postProcessor) {
 
45
                        Date lastAccessDate, int generation, String perspective,
 
46
                        PostProcessor postProcessor) {
45
47
                super(name, system, album, adhoc, network, description, colorCode,
46
 
                                lastAccessDate, generation);
 
48
                                lastAccessDate, generation, perspective);
47
49
                this.postProcessor = postProcessor;
48
50
 
49
51
        }