//# 0 errors, 40 messages
//#
/*
    //#CertificateChainEntryCellRenderer.java:1:1: class: com.dmdirc.addons.ui_swing.components.renderers.CertificateChainEntryCellRenderer
    //#CertificateChainEntryCellRenderer.java:1:1: method: com.dmdirc.addons.ui_swing.components.renderers.CertificateChainEntryCellRenderer.com.dmdirc.addons.ui_swing.components.renderers.CertificateChainEntryCellRenderer__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.ui.IconManager;
import com.dmdirc.ui.core.dialogs.sslcertificate.CertificateChainEntry;

import java.awt.Component;

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

/**
 * Renderer for Certificate chain entries, shows the verified icon and name.
 */
public class CertificateChainEntryCellRenderer 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 CertificateChainEntryCellRenderer. */
    public CertificateChainEntryCellRenderer() {
        super();
    //#CertificateChainEntryCellRenderer.java:47: method: void com.dmdirc.addons.ui_swing.components.renderers.CertificateChainEntryCellRenderer.com.dmdirc.addons.ui_swing.components.renderers.CertificateChainEntryCellRenderer()
    //#input(void com.dmdirc.addons.ui_swing.components.renderers.CertificateChainEntryCellRenderer()): this
    }
    //#CertificateChainEntryCellRenderer.java:48: end of method: void com.dmdirc.addons.ui_swing.components.renderers.CertificateChainEntryCellRenderer.com.dmdirc.addons.ui_swing.components.renderers.CertificateChainEntryCellRenderer()

    /** {@inheritDoc} */
    @Override
    public Component getListCellRendererComponent(JList list, Object value,
            int index, boolean isSelected, boolean cellHasFocus) {
        super.getListCellRendererComponent(list, value, index, isSelected, cellHasFocus);
    //#CertificateChainEntryCellRenderer.java:54: method: Component com.dmdirc.addons.ui_swing.components.renderers.CertificateChainEntryCellRenderer.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
    //#output(Component getListCellRendererComponent(JList, Object, int, bool, bool)): return_value
    //#presumption(Component getListCellRendererComponent(JList, Object, int, bool, bool)): com.dmdirc.ui.IconManager:getIconManager(...)@60 != null
    //#presumption(Component getListCellRendererComponent(JList, Object, int, bool, bool)): com.dmdirc.ui.IconManager:getIconManager(...)@62 != null
    //#presumption(Component getListCellRendererComponent(JList, Object, int, bool, bool)): com.dmdirc.ui.IconManager:getIconManager(...)@64 != null
    //#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)): com.dmdirc.ui.core.dialogs.sslcertificate.CertificateChainEntry:isInvalid(...)@59: {0}, {1}
    //#test_vector(Component getListCellRendererComponent(JList, Object, int, bool, bool)): com.dmdirc.ui.core.dialogs.sslcertificate.CertificateChainEntry:isTrusted(...)@61: {0}, {1}
        if (value instanceof CertificateChainEntry) {
            final CertificateChainEntry entry = (CertificateChainEntry) value;

            setText(entry.getName());
    //#CertificateChainEntryCellRenderer.java:58: Warning: method not available - call not analyzed
    //#    call on String com.dmdirc.ui.core.dialogs.sslcertificate.CertificateChainEntry:getName()
    //#    severity: INFORMATIONAL
    //#    class: com.dmdirc.addons.ui_swing.components.renderers.CertificateChainEntryCellRenderer
    //#    method: Component getListCellRendererComponent(JList, Object, int, bool, bool)
    //#    unanalyzed callee: String com.dmdirc.ui.core.dialogs.sslcertificate.CertificateChainEntry:getName()
    //#CertificateChainEntryCellRenderer.java:58: Warning: method not available - call not analyzed
    //#    call on void com.dmdirc.addons.ui_swing.components.renderers.CertificateChainEntryCellRenderer:setText(String)
    //#    severity: INFORMATIONAL
    //#    class: com.dmdirc.addons.ui_swing.components.renderers.CertificateChainEntryCellRenderer
    //#    method: Component getListCellRendererComponent(JList, Object, int, bool, bool)
    //#    unanalyzed callee: void com.dmdirc.addons.ui_swing.components.renderers.CertificateChainEntryCellRenderer:setText(String)
            if (entry.isInvalid()) {
    //#CertificateChainEntryCellRenderer.java:59: Warning: method not available - call not analyzed
    //#    call on bool com.dmdirc.ui.core.dialogs.sslcertificate.CertificateChainEntry:isInvalid()
    //#    severity: INFORMATIONAL
    //#    class: com.dmdirc.addons.ui_swing.components.renderers.CertificateChainEntryCellRenderer
    //#    method: Component getListCellRendererComponent(JList, Object, int, bool, bool)
    //#    unanalyzed callee: bool com.dmdirc.ui.core.dialogs.sslcertificate.CertificateChainEntry:isInvalid()
                setIcon(IconManager.getIconManager().getIcon("cross"));
    //#CertificateChainEntryCellRenderer.java:60: Warning: method not available - call not analyzed
    //#    call on IconManager com.dmdirc.ui.IconManager:getIconManager()
    //#    severity: INFORMATIONAL
    //#    class: com.dmdirc.addons.ui_swing.components.renderers.CertificateChainEntryCellRenderer
    //#    method: Component getListCellRendererComponent(JList, Object, int, bool, bool)
    //#    unanalyzed callee: IconManager com.dmdirc.ui.IconManager:getIconManager()
    //#CertificateChainEntryCellRenderer.java:60: Warning: method not available - call not analyzed
    //#    call on Icon com.dmdirc.ui.IconManager:getIcon(String)
    //#    severity: INFORMATIONAL
    //#    class: com.dmdirc.addons.ui_swing.components.renderers.CertificateChainEntryCellRenderer
    //#    method: Component getListCellRendererComponent(JList, Object, int, bool, bool)
    //#    unanalyzed callee: Icon com.dmdirc.ui.IconManager:getIcon(String)
    //#CertificateChainEntryCellRenderer.java:60: Warning: method not available - call not analyzed
    //#    call on void com.dmdirc.addons.ui_swing.components.renderers.CertificateChainEntryCellRenderer:setIcon(Icon)
    //#    severity: INFORMATIONAL
    //#    class: com.dmdirc.addons.ui_swing.components.renderers.CertificateChainEntryCellRenderer
    //#    method: Component getListCellRendererComponent(JList, Object, int, bool, bool)
    //#    unanalyzed callee: void com.dmdirc.addons.ui_swing.components.renderers.CertificateChainEntryCellRenderer:setIcon(Icon)
            } else if (entry.isTrusted()) {
    //#CertificateChainEntryCellRenderer.java:61: Warning: method not available - call not analyzed
    //#    call on bool com.dmdirc.ui.core.dialogs.sslcertificate.CertificateChainEntry:isTrusted()
    //#    severity: INFORMATIONAL
    //#    class: com.dmdirc.addons.ui_swing.components.renderers.CertificateChainEntryCellRenderer
    //#    method: Component getListCellRendererComponent(JList, Object, int, bool, bool)
    //#    unanalyzed callee: bool com.dmdirc.ui.core.dialogs.sslcertificate.CertificateChainEntry:isTrusted()
                setIcon(IconManager.getIconManager().getIcon("tick"));
    //#CertificateChainEntryCellRenderer.java:62: Warning: method not available - call not analyzed
    //#    call on IconManager com.dmdirc.ui.IconManager:getIconManager()
    //#    severity: INFORMATIONAL
    //#    class: com.dmdirc.addons.ui_swing.components.renderers.CertificateChainEntryCellRenderer
    //#    method: Component getListCellRendererComponent(JList, Object, int, bool, bool)
    //#    unanalyzed callee: IconManager com.dmdirc.ui.IconManager:getIconManager()
    //#CertificateChainEntryCellRenderer.java:62: Warning: method not available - call not analyzed
    //#    call on Icon com.dmdirc.ui.IconManager:getIcon(String)
    //#    severity: INFORMATIONAL
    //#    class: com.dmdirc.addons.ui_swing.components.renderers.CertificateChainEntryCellRenderer
    //#    method: Component getListCellRendererComponent(JList, Object, int, bool, bool)
    //#    unanalyzed callee: Icon com.dmdirc.ui.IconManager:getIcon(String)
    //#CertificateChainEntryCellRenderer.java:62: Warning: method not available - call not analyzed
    //#    call on void com.dmdirc.addons.ui_swing.components.renderers.CertificateChainEntryCellRenderer:setIcon(Icon)
    //#    severity: INFORMATIONAL
    //#    class: com.dmdirc.addons.ui_swing.components.renderers.CertificateChainEntryCellRenderer
    //#    method: Component getListCellRendererComponent(JList, Object, int, bool, bool)
    //#    unanalyzed callee: void com.dmdirc.addons.ui_swing.components.renderers.CertificateChainEntryCellRenderer:setIcon(Icon)
            } else {
                setIcon(IconManager.getIconManager().getIcon("nothing"));
    //#CertificateChainEntryCellRenderer.java:64: Warning: method not available - call not analyzed
    //#    call on IconManager com.dmdirc.ui.IconManager:getIconManager()
    //#    severity: INFORMATIONAL
    //#    class: com.dmdirc.addons.ui_swing.components.renderers.CertificateChainEntryCellRenderer
    //#    method: Component getListCellRendererComponent(JList, Object, int, bool, bool)
    //#    unanalyzed callee: IconManager com.dmdirc.ui.IconManager:getIconManager()
    //#CertificateChainEntryCellRenderer.java:64: Warning: method not available - call not analyzed
    //#    call on Icon com.dmdirc.ui.IconManager:getIcon(String)
    //#    severity: INFORMATIONAL
    //#    class: com.dmdirc.addons.ui_swing.components.renderers.CertificateChainEntryCellRenderer
    //#    method: Component getListCellRendererComponent(JList, Object, int, bool, bool)
    //#    unanalyzed callee: Icon com.dmdirc.ui.IconManager:getIcon(String)
    //#CertificateChainEntryCellRenderer.java:64: Warning: method not available - call not analyzed
    //#    call on void com.dmdirc.addons.ui_swing.components.renderers.CertificateChainEntryCellRenderer:setIcon(Icon)
    //#    severity: INFORMATIONAL
    //#    class: com.dmdirc.addons.ui_swing.components.renderers.CertificateChainEntryCellRenderer
    //#    method: Component getListCellRendererComponent(JList, Object, int, bool, bool)
    //#    unanalyzed callee: void com.dmdirc.addons.ui_swing.components.renderers.CertificateChainEntryCellRenderer:setIcon(Icon)
            }
        }
        return this;
    //#CertificateChainEntryCellRenderer.java:67: end of method: Component com.dmdirc.addons.ui_swing.components.renderers.CertificateChainEntryCellRenderer.getListCellRendererComponent(JList, Object, int, bool, bool)
    }
}
    //#output(com.dmdirc.addons.ui_swing.components.renderers.CertificateChainEntryCellRenderer__static_init): __Descendant_Table[com/dmdirc/addons/ui_swing/components/renderers/CertificateChainEntryCellRenderer]
    //#output(com.dmdirc.addons.ui_swing.components.renderers.CertificateChainEntryCellRenderer__static_init): __Dispatch_Table.getListCellRendererComponent(Ljavax/swing/JList;Ljava/lang/Object;IZZ)Ljava/awt/Component;
    //#post(com.dmdirc.addons.ui_swing.components.renderers.CertificateChainEntryCellRenderer__static_init): __Descendant_Table[com/dmdirc/addons/ui_swing/components/renderers/CertificateChainEntryCellRenderer] == &__Dispatch_Table
    //#post(com.dmdirc.addons.ui_swing.components.renderers.CertificateChainEntryCellRenderer__static_init): __Dispatch_Table.getListCellRendererComponent(Ljavax/swing/JList;Ljava/lang/Object;IZZ)Ljava/awt/Component; == &getListCellRendererComponent
    //#CertificateChainEntryCellRenderer.java:: end of method: com.dmdirc.addons.ui_swing.components.renderers.CertificateChainEntryCellRenderer.com.dmdirc.addons.ui_swing.components.renderers.CertificateChainEntryCellRenderer__static_init
    //#CertificateChainEntryCellRenderer.java:: end of class: com.dmdirc.addons.ui_swing.components.renderers.CertificateChainEntryCellRenderer
