Package com.salas.bb.updates

Examples of com.salas.bb.updates.CheckResult


     *
     * @return component.
     */
    private Component getWordingComponent()
    {
        CheckResult result = getCheckResult();

        return ComponentsFactory.createWrappedMultilineLabel(
            MessageFormat.format(Strings.message("updates.new.version.wording"),
                new Object[] { result.getRecentVersion() }));
    }
View Full Code Here


     *
     * @return table.
     */
    private Component getChangesTableComponent()
    {
        CheckResult result = getCheckResult();

        ChangesTableModel model = new ChangesTableModel(result.getChanges());
        JTable table = new JTable(model);
        table.setShowGrid(false);
        table.setTableHeader(null);
        UifUtilities.setTableColWidth(table, 0, 20);
        table.setDefaultRenderer(Integer.class, new ChangeTypeRenderer());
View Full Code Here

TOP

Related Classes of com.salas.bb.updates.CheckResult

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.