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

com.github.mygreen.cellformatter.term.AsteriskTerm Maven / Gradle / Ivy

There is a newer version: 0.12
Show newest version
package com.github.mygreen.cellformatter.term;

import java.util.Locale;

import com.github.mygreen.cellformatter.lang.MSLocale;
import com.github.mygreen.cellformatter.tokenizer.Token;


/**
 *  フォーマットの書式'*'の記号を表現する項。
 * ・'*'の次に続く文字をセルの幅によって埋める。
 * ・通常は何もしない。
 * 
 * @author T.TSUCHIE
 *
 */
public class AsteriskTerm implements Term {
    
    private static final String EMPTY = "";
    
    private final Token.Asterisk token;
    
    public AsteriskTerm(final Token.Asterisk token) {
        this.token = token;
    }
    
    @Override
    public String format(final T number, final MSLocale formatLocale, final Locale runtimeLocale) {
        return EMPTY;
    }
    
    public Token.Asterisk getToken() {
        return token;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy