//# 0 errors, 12 messages
//#
/*
    //#ActionComparison.java:1:1: class: com.dmdirc.actions.interfaces.ActionComparison
    //#ActionComparison.java:1:1: method: com.dmdirc.actions.interfaces.ActionComparison.com.dmdirc.actions.interfaces.ActionComparison__static_init
 * Copyright (c) 2006-2009 Chris Smith, Shane Mc Cormack, Gregory Holmes
 *
 * Permission is hereby granted, free of charge, to any person obtaining a copy
 * of this software and associated documentation files (the "Software"), to deal
 * in the Software without restriction, including without limitation the rights
 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
 * copies of the Software, and to permit persons to whom the Software is
 * furnished to do so, subject to the following conditions:
 *
 * The above copyright notice and this permission notice shall be included in
 * all copies or substantial portions of the Software.
 *
 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
 * SOFTWARE.
 */

package com.dmdirc.actions.interfaces;

/**
 * Describes the methods that must be implemented by an action comparison.
 * Action comparisons allow the user to compare an action component to a
 * string they entered.
 * @author chris
 */
public interface ActionComparison {
    
    /**
     * Tests the specified arguments against each other.
     * @param arg1 The first argument
     * @param arg2 The second argument
     * @return True iff the comparison between the args succeeds, false
     * otherwise
     */
    boolean test(final Object arg1, final Object arg2);
    
    /**
     * Returns the class that this comparison deals with.
     * @return The Class that this comparison can compare
     */
    Class appliesTo();
    
    /**
     * Returns a friendly name for this comparison.
     * @return This comparion's name
     */
    String getName();
    
}
    //#output(com.dmdirc.actions.interfaces.ActionComparison__static_init): __Descendant_Table[com/dmdirc/actions/interfaces/ActionComparison]
    //#output(com.dmdirc.actions.interfaces.ActionComparison__static_init): __Dispatch_Table.appliesTo()Ljava/lang/Class;
    //#output(com.dmdirc.actions.interfaces.ActionComparison__static_init): __Dispatch_Table.getName()Ljava/lang/String;
    //#output(com.dmdirc.actions.interfaces.ActionComparison__static_init): __Dispatch_Table.test(Ljava/lang/Object;Ljava/lang/Object;)Z
    //#post(com.dmdirc.actions.interfaces.ActionComparison__static_init): __Descendant_Table[com/dmdirc/actions/interfaces/ActionComparison] == &__Dispatch_Table
    //#post(com.dmdirc.actions.interfaces.ActionComparison__static_init): __Dispatch_Table.appliesTo()Ljava/lang/Class; == &appliesTo
    //#post(com.dmdirc.actions.interfaces.ActionComparison__static_init): __Dispatch_Table.getName()Ljava/lang/String; == &getName
    //#post(com.dmdirc.actions.interfaces.ActionComparison__static_init): __Dispatch_Table.test(Ljava/lang/Object;Ljava/lang/Object;)Z == &test
    //#ActionComparison.java:: end of method: com.dmdirc.actions.interfaces.ActionComparison.com.dmdirc.actions.interfaces.ActionComparison__static_init
    //#ActionComparison.java:: end of class: com.dmdirc.actions.interfaces.ActionComparison
