source: 3thparty/jupload/src/main/java/wjhk/jupload2/gui/filepanel/DateRenderer.java @ 3951

Revision 3951, 2.6 KB checked in by alexandrecorreia, 13 years ago (diff)

Ticket #1709 - Adicao de codigo fonte java do componente jupload

Line 
1//
2// $Id: DateRenderer.java 95 2007-05-02 03:27:05Z
3// /C=DE/ST=Baden-Wuerttemberg/O=ISDN4Linux/OU=Fritz
4// Elfert/CN=svn-felfert@isdn4linux.de/emailAddress=fritz@fritz-elfert.de $
5//
6// jupload - A file upload applet.
7// Copyright 2007 The JUpload Team
8//
9// Created: ?
10// Creator: William JinHua Kwong
11// Last modified: $Date: 2010-01-08 20:21:44 -0200 (Sex, 08 Jan 2010) $
12//
13// This program is free software; you can redistribute it and/or modify it under
14// the terms of the GNU General Public License as published by the Free Software
15// Foundation; either version 2 of the License, or (at your option) any later
16// version. This program is distributed in the hope that it will be useful, but
17// WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
18// FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
19// details. You should have received a copy of the GNU General Public License
20// along with this program; if not, write to the Free Software Foundation, Inc.,
21// 675 Mass Ave, Cambridge, MA 02139, USA.
22
23package wjhk.jupload2.gui.filepanel;
24
25import java.awt.Component;
26import java.text.SimpleDateFormat;
27import java.util.Date;
28
29import javax.swing.JTable;
30import javax.swing.table.DefaultTableCellRenderer;
31
32import wjhk.jupload2.policies.UploadPolicy;
33
34/**
35 * Technical class, used to display dates. Used in
36 * {@link wjhk.jupload2.gui.filepanel.FilePanelJTable}.
37 */
38public class DateRenderer extends DefaultTableCellRenderer {
39    /** A generated serialVersionUID, to avoid warning during compilation */
40    private static final long serialVersionUID = -7171473761133675782L;
41
42    private SimpleDateFormat df;
43
44    /**
45     * Creates a new instance.
46     *
47     * @param uploadPolicy The policy to be used for providing the translated
48     *            format string.
49     */
50    public DateRenderer(UploadPolicy uploadPolicy) {
51        super();
52        this.df = new SimpleDateFormat(uploadPolicy
53                .getLocalizedString("dateformat"));
54    }
55
56    /**
57     * @see javax.swing.table.DefaultTableCellRenderer#getTableCellRendererComponent(javax.swing.JTable,
58     *      java.lang.Object, boolean, boolean, int, int)
59     */
60    @Override
61    public Component getTableCellRendererComponent(JTable table, Object value,
62            boolean isSelected, boolean hasFocus, int row, int column) {
63        Component cell = super.getTableCellRendererComponent(table, value,
64                isSelected, hasFocus, row, column);
65
66        if (value instanceof Date)
67            setValue(this.df.format(value));
68        super.setHorizontalAlignment(RIGHT);
69        return cell;
70    }
71}
Note: See TracBrowser for help on using the repository browser.