com.alee.extended.collapsible.WebCollapsiblePaneLU Maven / Gradle / Ivy
/*
* This file is part of WebLookAndFeel library.
*
* WebLookAndFeel library is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* WebLookAndFeel library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with WebLookAndFeel library. If not, see .
*/
package com.alee.extended.collapsible;
import com.alee.managers.language.Language;
import com.alee.managers.language.ToolTipLU;
/**
* This class provides language updates for {@link WebCollapsiblePane}.
*
* @author Mikle Garin
* @see How to use LanguageManager
* @see com.alee.managers.language.LanguageManager
*/
public class WebCollapsiblePaneLU extends ToolTipLU
{
@Override
public Class getComponentClass ()
{
return WebCollapsiblePane.class;
}
@Override
public void update ( final WebCollapsiblePane component, final Language language, final String key, final Object... data )
{
super.update ( component, language, key, data );
if ( language.containsText ( key ) )
{
component.setTitle ( language.get ( key, data ) );
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy