//# 0 errors, 30 messages
//#
/*
    //#UpdateStatusTableCellRenderer.java:1:1: class: com.dmdirc.addons.ui_swing.components.renderers.UpdateStatusTableCellRenderer
    //#UpdateStatusTableCellRenderer.java:1:1: method: com.dmdirc.addons.ui_swing.components.renderers.UpdateStatusTableCellRenderer.com.dmdirc.addons.ui_swing.components.renderers.UpdateStatusTableCellRenderer__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.addons.ui_swing.components.renderers;

import com.dmdirc.updater.UpdateStatus;

import java.awt.Component;

import javax.swing.JTable;
import javax.swing.table.DefaultTableCellRenderer;

/**
 * UpdateStatus table cell renderer.
 */
public class UpdateStatusTableCellRenderer extends DefaultTableCellRenderer {
    //#UpdateStatusTableCellRenderer.java:35: method: void com.dmdirc.addons.ui_swing.components.renderers.UpdateStatusTableCellRenderer.com.dmdirc.addons.ui_swing.components.renderers.UpdateStatusTableCellRenderer()
    //#input(void com.dmdirc.addons.ui_swing.components.renderers.UpdateStatusTableCellRenderer()): this
    //#UpdateStatusTableCellRenderer.java:35: end of method: void com.dmdirc.addons.ui_swing.components.renderers.UpdateStatusTableCellRenderer.com.dmdirc.addons.ui_swing.components.renderers.UpdateStatusTableCellRenderer()

    /**
     * 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 Component getTableCellRendererComponent(final JTable table,
            final Object value, final boolean isSelected,
            final boolean hasFocus, final int row, final int column) {
        super.getTableCellRendererComponent(table, value, isSelected, hasFocus, row, column);
    //#UpdateStatusTableCellRenderer.java:49: method: Component com.dmdirc.addons.ui_swing.components.renderers.UpdateStatusTableCellRenderer.getTableCellRendererComponent(JTable, Object, bool, bool, int, int)
    //#input(Component getTableCellRendererComponent(JTable, Object, bool, bool, int, int)): column
    //#input(Component getTableCellRendererComponent(JTable, Object, bool, bool, int, int)): hasFocus
    //#input(Component getTableCellRendererComponent(JTable, Object, bool, bool, int, int)): isSelected
    //#input(Component getTableCellRendererComponent(JTable, Object, bool, bool, int, int)): row
    //#input(Component getTableCellRendererComponent(JTable, Object, bool, bool, int, int)): table
    //#input(Component getTableCellRendererComponent(JTable, Object, bool, bool, int, int)): this
    //#input(Component getTableCellRendererComponent(JTable, Object, bool, bool, int, int)): value
    //#input(Component getTableCellRendererComponent(JTable, Object, bool, bool, int, int)): value._tainted
    //#output(Component getTableCellRendererComponent(JTable, Object, bool, bool, int, int)): return_value
    //#post(Component getTableCellRendererComponent(JTable, Object, bool, bool, int, int)): return_value == this
    //#post(Component getTableCellRendererComponent(JTable, Object, bool, bool, int, int)): return_value != null
    //#test_vector(Component getTableCellRendererComponent(JTable, Object, bool, bool, int, int)): value: Inverse{null}, Addr_Set{null}
    //#test_vector(Component getTableCellRendererComponent(JTable, Object, bool, bool, int, int)): com.dmdirc.updater.UpdateStatus:instanceof(...)@53: {0}, {1}
        
        if (value == null) {
            setValue("Unknown");
    //#UpdateStatusTableCellRenderer.java:52: Warning: method not available - call not analyzed
    //#    call on void com.dmdirc.addons.ui_swing.components.renderers.UpdateStatusTableCellRenderer:setValue(Object)
    //#    severity: INFORMATIONAL
    //#    class: com.dmdirc.addons.ui_swing.components.renderers.UpdateStatusTableCellRenderer
    //#    method: Component getTableCellRendererComponent(JTable, Object, bool, bool, int, int)
    //#    unanalyzed callee: void com.dmdirc.addons.ui_swing.components.renderers.UpdateStatusTableCellRenderer:setValue(Object)
        } else if (value instanceof UpdateStatus) {
            setValue(((UpdateStatus) value).toString());
    //#UpdateStatusTableCellRenderer.java:54: Warning: method not available - call not analyzed
    //#    call on String com.dmdirc.updater.UpdateStatus:toString()
    //#    severity: INFORMATIONAL
    //#    class: com.dmdirc.addons.ui_swing.components.renderers.UpdateStatusTableCellRenderer
    //#    method: Component getTableCellRendererComponent(JTable, Object, bool, bool, int, int)
    //#    unanalyzed callee: String com.dmdirc.updater.UpdateStatus:toString()
    //#UpdateStatusTableCellRenderer.java:54: Warning: method not available - call not analyzed
    //#    call on void com.dmdirc.addons.ui_swing.components.renderers.UpdateStatusTableCellRenderer:setValue(Object)
    //#    severity: INFORMATIONAL
    //#    class: com.dmdirc.addons.ui_swing.components.renderers.UpdateStatusTableCellRenderer
    //#    method: Component getTableCellRendererComponent(JTable, Object, bool, bool, int, int)
    //#    unanalyzed callee: void com.dmdirc.addons.ui_swing.components.renderers.UpdateStatusTableCellRenderer:setValue(Object)
        } else {
            setValue(value.toString());
    //#UpdateStatusTableCellRenderer.java:56: Warning: method not available - call not analyzed
    //#    call on void com.dmdirc.addons.ui_swing.components.renderers.UpdateStatusTableCellRenderer:setValue(Object)
    //#    severity: INFORMATIONAL
    //#    class: com.dmdirc.addons.ui_swing.components.renderers.UpdateStatusTableCellRenderer
    //#    method: Component getTableCellRendererComponent(JTable, Object, bool, bool, int, int)
    //#    unanalyzed callee: void com.dmdirc.addons.ui_swing.components.renderers.UpdateStatusTableCellRenderer:setValue(Object)
        }

        return this;
    //#UpdateStatusTableCellRenderer.java:59: end of method: Component com.dmdirc.addons.ui_swing.components.renderers.UpdateStatusTableCellRenderer.getTableCellRendererComponent(JTable, Object, bool, bool, int, int)
    }
}
    //#output(com.dmdirc.addons.ui_swing.components.renderers.UpdateStatusTableCellRenderer__static_init): __Descendant_Table[com/dmdirc/addons/ui_swing/components/renderers/UpdateStatusTableCellRenderer]
    //#output(com.dmdirc.addons.ui_swing.components.renderers.UpdateStatusTableCellRenderer__static_init): __Dispatch_Table.getTableCellRendererComponent(Ljavax/swing/JTable;Ljava/lang/Object;ZZII)Ljava/awt/Component;
    //#post(com.dmdirc.addons.ui_swing.components.renderers.UpdateStatusTableCellRenderer__static_init): __Descendant_Table[com/dmdirc/addons/ui_swing/components/renderers/UpdateStatusTableCellRenderer] == &__Dispatch_Table
    //#post(com.dmdirc.addons.ui_swing.components.renderers.UpdateStatusTableCellRenderer__static_init): __Dispatch_Table.getTableCellRendererComponent(Ljavax/swing/JTable;Ljava/lang/Object;ZZII)Ljava/awt/Component; == &getTableCellRendererComponent
    //#UpdateStatusTableCellRenderer.java:: end of method: com.dmdirc.addons.ui_swing.components.renderers.UpdateStatusTableCellRenderer.com.dmdirc.addons.ui_swing.components.renderers.UpdateStatusTableCellRenderer__static_init
    //#UpdateStatusTableCellRenderer.java:: end of class: com.dmdirc.addons.ui_swing.components.renderers.UpdateStatusTableCellRenderer
