Package org.apache.roller.weblogger.pojos

Examples of org.apache.roller.weblogger.pojos.MediaFileComparator


            this.childFiles = new ArrayList<MediaFile>();
            this.childFiles.addAll(directory.getMediaFiles());

            if ("type".equals(sortBy)) {
                Collections.sort(this.childFiles,
                    new MediaFileComparator(MediaFileComparatorType.TYPE));

            } else if ("date_uploaded".equals(sortBy)) {
                Collections.sort(this.childFiles,
                    new MediaFileComparator(MediaFileComparatorType.DATE_UPLOADED));

            } else { // default to sort by name
                sortBy = "name";
                Collections.sort(this.childDirectories,
                    new MediaFileDirectoryComparator(DirectoryComparatorType.NAME));
                Collections.sort(this.childFiles,
                    new MediaFileComparator(MediaFileComparatorType.NAME));
            }

            this.currentDirectory = directory;

            return SUCCESS;
View Full Code Here


            }

            Collections.sort(this.childDirectories,
                    new MediaFileDirectoryComparator(DirectoryComparatorType.NAME));
            Collections.sort(this.childFiles,
                    new MediaFileComparator(MediaFileComparatorType.NAME));

            this.currentDirectory = directory;

            return SUCCESS;
View Full Code Here

TOP

Related Classes of org.apache.roller.weblogger.pojos.MediaFileComparator

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.