All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.alee.managers.language.data.Text Maven / Gradle / Ivy

The newest version!
/*
 * 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.managers.language.data;

import com.alee.api.jdk.Supplier;
import com.alee.utils.ArrayUtils;
import com.alee.utils.HtmlUtils;
import com.alee.utils.TextUtils;
import com.thoughtworks.xstream.annotations.XStreamAlias;
import com.thoughtworks.xstream.annotations.XStreamAsAttribute;
import com.thoughtworks.xstream.annotations.XStreamConverter;

import java.io.Serializable;

/**
 * {@link Text} represents translation for a single translation key, language and state.
 *
 * @author Mikle Garin
 * @see How to use LanguageManager
 * @see com.alee.managers.language.LanguageManager
 * @see com.alee.managers.language.Language
 * @see Value
 */
@XStreamAlias ( "text" )
@XStreamConverter ( TextConverter.class )
public final class Text implements Cloneable, Serializable
{
    /**
     * State this translation is used for.
     */
    @XStreamAsAttribute
    private String state;

    /**
     * Mnemonic character.
     */
    @XStreamAsAttribute
    private int mnemonic;

    /**
     * Translation text.
     */
    private String text;

    /**
     * Constructs new {@link Text} with default state and empty text.
     */
    public Text ()
    {
        this ( "" );
    }

    /**
     * Constructs new {@link Text} with default state and specified translation text.
     *
     * @param text translation text
     */
    public Text ( final String text )
    {
        this ( text, null );
    }

    /**
     * Constructs new {@link Text} with the specified state and translation text.
     *
     * @param text  translation text
     * @param state state this translation is used for
     */
    public Text ( final String text, final String state )
    {
        this ( text, state, -1 );
    }

    /**
     * Constructs new {@link Text} with the specified state and translation text.
     *
     * @param text     translation text
     * @param state    state this translation is used for
     * @param mnemonic mnemonic character
     */
    public Text ( final String text, final String state, final int mnemonic )
    {
        super ();
        this.text = text;
        this.state = state;
        this.mnemonic = mnemonic;
    }

    /**
     * Returns parsed {@link #text} or raw contents depending on provided data.
     *
     * @param data language data to process
     * @return parsed {@link #text} or raw contents depending on provided data
     */
    public String getText ( final Object... data )
    {
        final String result;
        if ( ArrayUtils.notEmpty ( data ) )
        {
            final Object[] objects = parseData ( data );
            result = String.format ( text, objects );
        }
        else
        {
            result = text;
        }
        return result;
    }

    /**
     * Returns language data transformed into its final form.
     *
     * @param data language data to process
     * @return language data transformed into its final form
     */
    private Object[] parseData ( final Object... data )
    {
        if ( data != null )
        {
            final Object[] finalData = new Object[ data.length ];
            for ( int i = 0; i < data.length; i++ )
            {
                final Object object = data[ i ];
                if ( object != null )
                {
                    if ( object instanceof Supplier )
                    {
                        finalData[ i ] = ( ( Supplier ) object ).get ();
                    }
                    else
                    {
                        finalData[ i ] = object;
                    }
                }
                else
                {
                    finalData[ i ] = object;
                }
            }
            return finalData;
        }
        else
        {
            return null;
        }
    }

    /**
     * Sets translation text.
     *
     * @param text translation text
     */
    public void setText ( final String text )
    {
        this.text = text;
    }

    /**
     * Returns state this translation is used for.
     *
     * @return state this translation is used for
     */
    public String getState ()
    {
        return state;
    }

    /**
     * Sets state this translation is used for.
     *
     * @param state state this translation is used for
     */
    public void setState ( final String state )
    {
        this.state = state;
    }

    /**
     * Returns mnemonic character.
     *
     * @return mnemonic character
     */
    public int getMnemonic ()
    {
        return mnemonic;
    }

    /**
     * Sets mnemonic character.
     *
     * @param mnemonic new mnemonic character
     */
    public void setMnemonic ( final int mnemonic )
    {
        this.mnemonic = mnemonic;
    }

    @Override
    public String toString ()
    {
        return TextUtils.shortenText ( HtmlUtils.getPlainText ( text ), 50, true );
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy