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

/**
 * Validator checking the string is not empty.
 */
public class NotEmptyValidator implements Validator<String> {
    //#NotEmptyValidator.java:28: method: void com.dmdirc.config.prefs.validator.NotEmptyValidator.com.dmdirc.config.prefs.validator.NotEmptyValidator()
    //#NotEmptyValidator.java:28: end of method: void com.dmdirc.config.prefs.validator.NotEmptyValidator.com.dmdirc.config.prefs.validator.NotEmptyValidator()
    //#NotEmptyValidator.java:28: method: ValidationResponse com.dmdirc.config.prefs.validator.NotEmptyValidator.validate(Object)
    //#input(ValidationResponse validate(Object)): __Descendant_Table[com/dmdirc/config/prefs/validator/NotEmptyValidator]
    //#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/NotEmptyValidator
    //#pre[3] (ValidationResponse validate(Object)): x0 != null
    //#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 == &"Cannot be an empty string."
    //#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)): new ValidationResponse(validate#2*).failure == null
    //#unanalyzed(ValidationResponse validate(Object)): Effects-of-calling:java.lang.String:isEmpty
    //#NotEmptyValidator.java:28: end of method: ValidationResponse com.dmdirc.config.prefs.validator.NotEmptyValidator.validate(Object)

    /**
     * A version number for this class. It should be changed whenever the class
     * structure is changed (or anything else that would prevent serialized
     * objects being unserialized with the new class).
     */
    private static final long serialVersionUID = 1;

    /** {@inheritDoc} */
    @Override
    public ValidationResponse validate(final String object) {
        if (object.isEmpty()) {
    //#NotEmptyValidator.java:40: method: ValidationResponse com.dmdirc.config.prefs.validator.NotEmptyValidator.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)
    //#pre[1] (ValidationResponse validate(String)): object != null
    //#post(ValidationResponse validate(String)): return_value in Addr_Set{&new ValidationResponse(validate#2),&new ValidationResponse(validate#1)}
    //#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 == &"Cannot be an empty string."
    //#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)): new ValidationResponse(validate#2).failure == null
    //#test_vector(ValidationResponse validate(String)): java.lang.String:isEmpty(...)@40: {0}, {1}
            return new ValidationResponse("Cannot be an empty string.");
        } else {
            return new ValidationResponse();
    //#NotEmptyValidator.java:43: end of method: ValidationResponse com.dmdirc.config.prefs.validator.NotEmptyValidator.validate(String)
        }
    }

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