//# 0 errors, 62 messages
//#
/*
    //#RegexValidator.java:1:1: class: com.dmdirc.config.prefs.validator.RegexValidator
    //#RegexValidator.java:1:1: method: com.dmdirc.config.prefs.validator.RegexValidator.com.dmdirc.config.prefs.validator.RegexValidator__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.config.prefs.validator;

/**
 * Validates a regular expression.
 * 
 * @author chris
 */
public class RegexValidator implements Validator<String> {
    //#RegexValidator.java:30: method: void com.dmdirc.config.prefs.validator.RegexValidator.com.dmdirc.config.prefs.validator.RegexValidator()
    //#RegexValidator.java:30: end of method: void com.dmdirc.config.prefs.validator.RegexValidator.com.dmdirc.config.prefs.validator.RegexValidator()
    //#RegexValidator.java:30: method: ValidationResponse com.dmdirc.config.prefs.validator.RegexValidator.validate(Object)
    //#input(ValidationResponse validate(Object)): __Descendant_Table[com/dmdirc/config/prefs/validator/RegexValidator]
    //#input(ValidationResponse validate(Object)): __Descendant_Table[others]
    //#input(ValidationResponse validate(Object)): __Dispatch_Table.validate(Ljava/lang/String;)Lcom/dmdirc/config/prefs/validator/ValidationResponse;
    //#input(ValidationResponse validate(Object)): this
    //#input(ValidationResponse validate(Object)): this.__Tag
    //#input(ValidationResponse validate(Object)): x0
    //#output(ValidationResponse validate(Object)): new ValidationResponse(validate#1*) num objects
    //#output(ValidationResponse validate(Object)): new ValidationResponse(validate#1*).__Tag
    //#output(ValidationResponse validate(Object)): new ValidationResponse(validate#1*).failure
    //#output(ValidationResponse validate(Object)): new ValidationResponse(validate#2*) num objects
    //#output(ValidationResponse validate(Object)): new ValidationResponse(validate#2*).__Tag
    //#output(ValidationResponse validate(Object)): new ValidationResponse(validate#2*).failure
    //#output(ValidationResponse validate(Object)): return_value
    //#new obj(ValidationResponse validate(Object)): new ValidationResponse(validate#1*)
    //#new obj(ValidationResponse validate(Object)): new ValidationResponse(validate#2*)
    //#pre[2] (ValidationResponse validate(Object)): this.__Tag == com/dmdirc/config/prefs/validator/RegexValidator
    //#post(ValidationResponse validate(Object)): return_value == One-of{&new ValidationResponse(validate#1*), &new ValidationResponse(validate#2*)}
    //#post(ValidationResponse validate(Object)): return_value in Addr_Set{&new ValidationResponse(validate#1*),&new ValidationResponse(validate#2*)}
    //#post(ValidationResponse validate(Object)): new ValidationResponse(validate#1*) num objects <= 1
    //#post(ValidationResponse validate(Object)): new ValidationResponse(validate#1*).__Tag == com/dmdirc/config/prefs/validator/ValidationResponse
    //#post(ValidationResponse validate(Object)): new ValidationResponse(validate#1*).failure == null
    //#post(ValidationResponse validate(Object)): new ValidationResponse(validate#2*) num objects <= 1
    //#post(ValidationResponse validate(Object)): new ValidationResponse(validate#2*).__Tag == com/dmdirc/config/prefs/validator/ValidationResponse
    //#post(ValidationResponse validate(Object)): init'ed(new ValidationResponse(validate#2*).failure)
    //#unanalyzed(ValidationResponse validate(Object)): Effects-of-calling:java.lang.String:matches
    //#unanalyzed(ValidationResponse validate(Object)): Effects-of-calling:java.lang.Throwable:__curr_excep_obj
    //#unanalyzed(ValidationResponse validate(Object)): Effects-of-calling:java.lang.Exception:getMessage
    //#RegexValidator.java:30: end of method: ValidationResponse com.dmdirc.config.prefs.validator.RegexValidator.validate(Object)

    /** {@inheritDoc} */
    @Override
    public ValidationResponse validate(final String object) {
        try {
            // Is there a proper way of doing this, as opposed to just seeing
            // if it breaks?
            
            "abc".matches(object);
    //#RegexValidator.java:39: method: ValidationResponse com.dmdirc.config.prefs.validator.RegexValidator.validate(String)
    //#input(ValidationResponse validate(String)): object
    //#output(ValidationResponse validate(String)): new ValidationResponse(validate#1) num objects
    //#output(ValidationResponse validate(String)): new ValidationResponse(validate#1).__Tag
    //#output(ValidationResponse validate(String)): new ValidationResponse(validate#1).failure
    //#output(ValidationResponse validate(String)): new ValidationResponse(validate#2) num objects
    //#output(ValidationResponse validate(String)): new ValidationResponse(validate#2).__Tag
    //#output(ValidationResponse validate(String)): new ValidationResponse(validate#2).failure
    //#output(ValidationResponse validate(String)): return_value
    //#new obj(ValidationResponse validate(String)): new ValidationResponse(validate#1)
    //#new obj(ValidationResponse validate(String)): new ValidationResponse(validate#2)
    //#post(ValidationResponse validate(String)): return_value in Addr_Set{&new ValidationResponse(validate#1),&new ValidationResponse(validate#2)}
    //#post(ValidationResponse validate(String)): new ValidationResponse(validate#1) num objects <= 1
    //#post(ValidationResponse validate(String)): new ValidationResponse(validate#1).__Tag == com/dmdirc/config/prefs/validator/ValidationResponse
    //#post(ValidationResponse validate(String)): new ValidationResponse(validate#1).failure == null
    //#post(ValidationResponse validate(String)): new ValidationResponse(validate#2) num objects <= 1
    //#post(ValidationResponse validate(String)): new ValidationResponse(validate#2).__Tag == com/dmdirc/config/prefs/validator/ValidationResponse
    //#post(ValidationResponse validate(String)): init'ed(new ValidationResponse(validate#2).failure)
            return new ValidationResponse();
        } catch (Exception ex) {
            return new ValidationResponse(ex.getMessage());
    //#RegexValidator.java:42: end of method: ValidationResponse com.dmdirc.config.prefs.validator.RegexValidator.validate(String)
        }
    }

}
    //#output(com.dmdirc.config.prefs.validator.RegexValidator__static_init): __Descendant_Table[com/dmdirc/config/prefs/validator/RegexValidator]
    //#output(com.dmdirc.config.prefs.validator.RegexValidator__static_init): __Dispatch_Table.validate(Ljava/lang/Object;)Lcom/dmdirc/config/prefs/validator/ValidationResponse;
    //#output(com.dmdirc.config.prefs.validator.RegexValidator__static_init): __Dispatch_Table.validate(Ljava/lang/String;)Lcom/dmdirc/config/prefs/validator/ValidationResponse;
    //#output(com.dmdirc.config.prefs.validator.RegexValidator__static_init): com/dmdirc/config/prefs/validator/Validator.__Descendant_Table[com/dmdirc/config/prefs/validator/RegexValidator]
    //#post(com.dmdirc.config.prefs.validator.RegexValidator__static_init): __Descendant_Table[com/dmdirc/config/prefs/validator/RegexValidator] == &__Dispatch_Table
    //#post(com.dmdirc.config.prefs.validator.RegexValidator__static_init): com/dmdirc/config/prefs/validator/Validator.__Descendant_Table[com/dmdirc/config/prefs/validator/RegexValidator] == &__Dispatch_Table
    //#post(com.dmdirc.config.prefs.validator.RegexValidator__static_init): __Dispatch_Table.validate(Ljava/lang/Object;)Lcom/dmdirc/config/prefs/validator/ValidationResponse; == &validate
    //#post(com.dmdirc.config.prefs.validator.RegexValidator__static_init): __Dispatch_Table.validate(Ljava/lang/String;)Lcom/dmdirc/config/prefs/validator/ValidationResponse; == &validate
    //#RegexValidator.java:: end of method: com.dmdirc.config.prefs.validator.RegexValidator.com.dmdirc.config.prefs.validator.RegexValidator__static_init
    //#RegexValidator.java:: end of class: com.dmdirc.config.prefs.validator.RegexValidator
