alvinalexander.com | career | drupal | java | mac | mysql | perl | scala | uml | unix  

What this is

This file is included in the DevDaily.com "Java Source Code Warehouse" project. The intent of this project is to help you "Learn Java by Example" TM.

Other links

The source code

/*
 *                 Sun Public License Notice
 *
 * The contents of this file are subject to the Sun Public License
 * Version 1.0 (the "License"). You may not use this file except in
 * compliance with the License. A copy of the License is available at
 * http://www.sun.com/
 *
 * The Original Code is NetBeans. The Initial Developer of the Original
 * Code is Sun Microsystems, Inc. Portions Copyright 1997-2002 Sun
 * Microsystems, Inc. All Rights Reserved.
 */

package org.netbeans.modules.tasklist.usertasks;

import org.netbeans.modules.tasklist.client.SuggestionProperty;
import org.netbeans.modules.tasklist.core.filter.AppliedFilterCondition;
import org.netbeans.modules.tasklist.core.filter.BooleanFilterCondition;
import org.netbeans.modules.tasklist.core.filter.DateFilterCondition;
import org.netbeans.modules.tasklist.core.filter.Filter;
import org.netbeans.modules.tasklist.core.filter.FilterConvertor;
import org.netbeans.modules.tasklist.core.filter.IntegerFilterCondition;
import org.netbeans.modules.tasklist.core.filter.PriorityCondition;
import org.netbeans.modules.tasklist.core.filter.StringFilterCondition;

/**
 * Filter for user tasks
 * @author Tim Lebedkov
 */
public class UserTaskFilter extends Filter {
    private static final SuggestionProperty[] PROPS = new SuggestionProperty[] {
        UserTaskProperties.PROP_SUMMARY,
        UserTaskProperties.PROP_PRIORITY,
        UserTaskProperties.PROP_CATEGORY,
        UserTaskProperties.PROP_FILENAME,
        UserTaskProperties.PROP_LINE_NUMBER,
        UserTaskProperties.PROP_CREATED_DATE,
        UserTaskProperties.PROP_LAST_EDITED_DATE,
        UserTaskProperties.PROP_DUE_DATE,
        UserTaskProperties.PROP_DONE,
        UserTaskProperties.PROP_PERCENT_COMPLETE,
        UserTaskProperties.PROP_EFFORT,
        UserTaskProperties.PROP_REMAINING_EFFORT,
        UserTaskProperties.PROP_SPENT_TIME
    };
    
    /** 
     * Creates a new instance of UserTaskFilter 
     *
     * @param name name of the filter
     */
    public UserTaskFilter(String name) {
        super(name);
    }
  
    public UserTaskFilter(UserTaskFilter rhs) {
      super(rhs);
    }

    private UserTaskFilter() { // for deconvertization
    }

    public Object clone() {
      return new UserTaskFilter(this);
    }

    public SuggestionProperty[] getProperties() {
        return PROPS;
    }
    
    public AppliedFilterCondition[] createConditions(SuggestionProperty property) {
        if (property.equals(UserTaskProperties.PROP_SUMMARY)) {
            return applyConditions(property, StringFilterCondition.createConditions());
        } else if (property.equals(UserTaskProperties.PROP_PRIORITY)) {
            return applyConditions(property, PriorityCondition.createConditions());
        } else if (property.equals(UserTaskProperties.PROP_CATEGORY)) {
            return applyConditions(property, StringFilterCondition.createConditions());
        } else if (property.equals(UserTaskProperties.PROP_DETAILS)) {
            return applyConditions(property, StringFilterCondition.createConditions());
        } else if (property.equals(UserTaskProperties.PROP_FILENAME)) {
            return applyConditions(property, StringFilterCondition.createConditions());
        } else if (property.equals(UserTaskProperties.PROP_LINE_NUMBER)) {
            return applyConditions(property, IntegerFilterCondition.createConditions());
        } else if (property.equals(UserTaskProperties.PROP_CREATED_DATE)) {
            return applyConditions(property, DateFilterCondition.createConditions());
        } else if (property.equals(UserTaskProperties.PROP_LAST_EDITED_DATE)) {
            return applyConditions(property, DateFilterCondition.createConditions());
        } else if (property.equals(UserTaskProperties.PROP_DUE_DATE)) {
            return applyConditions(property, DateFilterCondition.createConditions());
        } else if (property.equals(UserTaskProperties.PROP_DONE)) {
            return applyConditions(property, BooleanFilterCondition.createConditions());
        } else if (property.equals(UserTaskProperties.PROP_PERCENT_COMPLETE)) {
            return applyConditions(property, IntegerFilterCondition.createConditions());
        } else if (property.equals(UserTaskProperties.PROP_EFFORT)) {
            return applyConditions(property, DurationFilterCondition.createConditions());
        } else if (property.equals(UserTaskProperties.PROP_REMAINING_EFFORT)) {
            return applyConditions(property, DurationFilterCondition.createConditions());
        } else if (property.equals(UserTaskProperties.PROP_SPENT_TIME)) {
            return applyConditions(property, DurationFilterCondition.createConditions());
        } else {
            throw new InternalError("Wrong index");
        }
    }
    

    private static class Convertor extends FilterConvertor {        
        public Convertor() {
            super("UserTaskFilter");
        }
        
        public static UserTaskFilter.Convertor create() { 
            return new UserTaskFilter.Convertor();
        }
        
        protected Filter createFilter() { return new UserTaskFilter();}
        
        protected SuggestionProperty getProperty(String propid) {
            SuggestionProperty sp = UserTaskProperties.getProperty(propid);
            if (sp == null)
                return super.getProperty(propid);
            else
                return sp;
        }        
    }

}
... this post is sponsored by my books ...

#1 New Release!

FP Best Seller

 

new blog posts

 

Copyright 1998-2021 Alvin Alexander, alvinalexander.com
All Rights Reserved.

A percentage of advertising revenue from
pages under the /java/jwarehouse URI on this website is
paid back to open source projects.