//# 0 errors, 33 messages
//#
/*
    //#ActionCellRenderer.java:1:1: class: com.dmdirc.addons.ui_swing.components.renderers.ActionCellRenderer
    //#ActionCellRenderer.java:1:1: method: com.dmdirc.addons.ui_swing.components.renderers.ActionCellRenderer.com.dmdirc.addons.ui_swing.components.renderers.ActionCellRenderer__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.actions.interfaces.ActionComparison;
import com.dmdirc.actions.interfaces.ActionComponent;
import com.dmdirc.actions.interfaces.ActionType;

import java.awt.Component;

import javax.swing.DefaultListCellRenderer;
import javax.swing.JList;

/**
 * Displays actions using getName not toString.
 */
public final class ActionCellRenderer extends DefaultListCellRenderer {
    
    /**
     * 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;
    
    /**
     * Creates a new instance of ActionCellRenderer.
     */
    public ActionCellRenderer() {
        super();
    //#ActionCellRenderer.java:50: method: void com.dmdirc.addons.ui_swing.components.renderers.ActionCellRenderer.com.dmdirc.addons.ui_swing.components.renderers.ActionCellRenderer()
    //#input(void com.dmdirc.addons.ui_swing.components.renderers.ActionCellRenderer()): this
    }
    //#ActionCellRenderer.java:51: end of method: void com.dmdirc.addons.ui_swing.components.renderers.ActionCellRenderer.com.dmdirc.addons.ui_swing.components.renderers.ActionCellRenderer()
    
    /** {@inheritDoc} */
    @Override
    public Component getListCellRendererComponent(final JList list,
            final Object value, final int index, final boolean isSelected,
            final boolean cellHasFocus) {
        super.getListCellRendererComponent(list, value, index, isSelected, cellHasFocus);
    //#ActionCellRenderer.java:58: method: Component com.dmdirc.addons.ui_swing.components.renderers.ActionCellRenderer.getListCellRendererComponent(JList, Object, int, bool, bool)
    //#input(Component getListCellRendererComponent(JList, Object, int, bool, bool)): cellHasFocus
    //#input(Component getListCellRendererComponent(JList, Object, int, bool, bool)): index
    //#input(Component getListCellRendererComponent(JList, Object, int, bool, bool)): isSelected
    //#input(Component getListCellRendererComponent(JList, Object, int, bool, bool)): list
    //#input(Component getListCellRendererComponent(JList, Object, int, bool, bool)): this
    //#input(Component getListCellRendererComponent(JList, Object, int, bool, bool)): value
    //#input(Component getListCellRendererComponent(JList, Object, int, bool, bool)): value._tainted
    //#output(Component getListCellRendererComponent(JList, Object, int, bool, bool)): return_value
    //#post(Component getListCellRendererComponent(JList, Object, int, bool, bool)): return_value == this
    //#post(Component getListCellRendererComponent(JList, Object, int, bool, bool)): return_value != null
    //#test_vector(Component getListCellRendererComponent(JList, Object, int, bool, bool)): value: Inverse{null}, Addr_Set{null}
        
        if (value instanceof ActionComparison) {
            setText(((ActionComparison) value).getName());
    //#ActionCellRenderer.java:61: Warning: method not available - call not analyzed
    //#    call on String com.dmdirc.actions.interfaces.ActionComparison:getName()
    //#    severity: INFORMATIONAL
    //#    class: com.dmdirc.addons.ui_swing.components.renderers.ActionCellRenderer
    //#    method: Component getListCellRendererComponent(JList, Object, int, bool, bool)
    //#    unanalyzed callee: String com.dmdirc.actions.interfaces.ActionComparison:getName()
    //#ActionCellRenderer.java:61: Warning: method not available - call not analyzed
    //#    call on void com.dmdirc.addons.ui_swing.components.renderers.ActionCellRenderer:setText(String)
    //#    severity: INFORMATIONAL
    //#    class: com.dmdirc.addons.ui_swing.components.renderers.ActionCellRenderer
    //#    method: Component getListCellRendererComponent(JList, Object, int, bool, bool)
    //#    unanalyzed callee: void com.dmdirc.addons.ui_swing.components.renderers.ActionCellRenderer:setText(String)
        } else if (value instanceof ActionComponent) {
            setText(((ActionComponent) value).getName());
    //#ActionCellRenderer.java:63: Warning: method not available - call not analyzed
    //#    call on String com.dmdirc.actions.interfaces.ActionComponent:getName()
    //#    severity: INFORMATIONAL
    //#    class: com.dmdirc.addons.ui_swing.components.renderers.ActionCellRenderer
    //#    method: Component getListCellRendererComponent(JList, Object, int, bool, bool)
    //#    unanalyzed callee: String com.dmdirc.actions.interfaces.ActionComponent:getName()
    //#ActionCellRenderer.java:63: Warning: method not available - call not analyzed
    //#    call on void com.dmdirc.addons.ui_swing.components.renderers.ActionCellRenderer:setText(String)
    //#    severity: INFORMATIONAL
    //#    class: com.dmdirc.addons.ui_swing.components.renderers.ActionCellRenderer
    //#    method: Component getListCellRendererComponent(JList, Object, int, bool, bool)
    //#    unanalyzed callee: void com.dmdirc.addons.ui_swing.components.renderers.ActionCellRenderer:setText(String)
        } else if (value instanceof ActionType) {
            setText(((ActionType) value).getName());
    //#ActionCellRenderer.java:65: Warning: method not available - call not analyzed
    //#    call on String com.dmdirc.actions.interfaces.ActionType:getName()
    //#    severity: INFORMATIONAL
    //#    class: com.dmdirc.addons.ui_swing.components.renderers.ActionCellRenderer
    //#    method: Component getListCellRendererComponent(JList, Object, int, bool, bool)
    //#    unanalyzed callee: String com.dmdirc.actions.interfaces.ActionType:getName()
    //#ActionCellRenderer.java:65: Warning: method not available - call not analyzed
    //#    call on void com.dmdirc.addons.ui_swing.components.renderers.ActionCellRenderer:setText(String)
    //#    severity: INFORMATIONAL
    //#    class: com.dmdirc.addons.ui_swing.components.renderers.ActionCellRenderer
    //#    method: Component getListCellRendererComponent(JList, Object, int, bool, bool)
    //#    unanalyzed callee: void com.dmdirc.addons.ui_swing.components.renderers.ActionCellRenderer:setText(String)
        } else if (value instanceof Class) {
            setText(((Class) value).getSimpleName());
    //#ActionCellRenderer.java:67: Warning: method not available - call not analyzed
    //#    call on void com.dmdirc.addons.ui_swing.components.renderers.ActionCellRenderer:setText(String)
    //#    severity: INFORMATIONAL
    //#    class: com.dmdirc.addons.ui_swing.components.renderers.ActionCellRenderer
    //#    method: Component getListCellRendererComponent(JList, Object, int, bool, bool)
    //#    unanalyzed callee: void com.dmdirc.addons.ui_swing.components.renderers.ActionCellRenderer:setText(String)
        } else if (value == null) {
            setText("");
    //#ActionCellRenderer.java:69: Warning: method not available - call not analyzed
    //#    call on void com.dmdirc.addons.ui_swing.components.renderers.ActionCellRenderer:setText(String)
    //#    severity: INFORMATIONAL
    //#    class: com.dmdirc.addons.ui_swing.components.renderers.ActionCellRenderer
    //#    method: Component getListCellRendererComponent(JList, Object, int, bool, bool)
    //#    unanalyzed callee: void com.dmdirc.addons.ui_swing.components.renderers.ActionCellRenderer:setText(String)
        } else {
            setText(value.toString());
    //#ActionCellRenderer.java:71: Warning: method not available - call not analyzed
    //#    call on void com.dmdirc.addons.ui_swing.components.renderers.ActionCellRenderer:setText(String)
    //#    severity: INFORMATIONAL
    //#    class: com.dmdirc.addons.ui_swing.components.renderers.ActionCellRenderer
    //#    method: Component getListCellRendererComponent(JList, Object, int, bool, bool)
    //#    unanalyzed callee: void com.dmdirc.addons.ui_swing.components.renderers.ActionCellRenderer:setText(String)
        }
        
        return this;
    //#ActionCellRenderer.java:74: end of method: Component com.dmdirc.addons.ui_swing.components.renderers.ActionCellRenderer.getListCellRendererComponent(JList, Object, int, bool, bool)
    }
    
}
    //#output(com.dmdirc.addons.ui_swing.components.renderers.ActionCellRenderer__static_init): __Descendant_Table[com/dmdirc/addons/ui_swing/components/renderers/ActionCellRenderer]
    //#output(com.dmdirc.addons.ui_swing.components.renderers.ActionCellRenderer__static_init): __Dispatch_Table.getListCellRendererComponent(Ljavax/swing/JList;Ljava/lang/Object;IZZ)Ljava/awt/Component;
    //#post(com.dmdirc.addons.ui_swing.components.renderers.ActionCellRenderer__static_init): __Descendant_Table[com/dmdirc/addons/ui_swing/components/renderers/ActionCellRenderer] == &__Dispatch_Table
    //#post(com.dmdirc.addons.ui_swing.components.renderers.ActionCellRenderer__static_init): __Dispatch_Table.getListCellRendererComponent(Ljavax/swing/JList;Ljava/lang/Object;IZZ)Ljava/awt/Component; == &getListCellRendererComponent
    //#ActionCellRenderer.java:: end of method: com.dmdirc.addons.ui_swing.components.renderers.ActionCellRenderer.com.dmdirc.addons.ui_swing.components.renderers.ActionCellRenderer__static_init
    //#ActionCellRenderer.java:: end of class: com.dmdirc.addons.ui_swing.components.renderers.ActionCellRenderer
