Java FontMetrics alignRight(FontMetrics fm, String string, int align)

Here you can find the source of alignRight(FontMetrics fm, String string, int align)

Description

Aligns the text on the right

License

Open Source License

Parameter

Parameter Description
fm FontMetrics
string The string to be printed
align The right hand border on which to align the text

Return

Returns the position where the text should start printing

Declaration

public static int alignRight(FontMetrics fm, String string, int align) 

Method Source Code

//package com.java2s;
/*/*from   ww w  .  ja  v  a 2  s  .  c  o m*/
 * iDART: The Intelligent Dispensing of Antiretroviral Treatment
 * Copyright (C) 2006 Cell-Life
 * 
 * This program is free software; you can redistribute it and/or modify it
 * under the terms of the GNU General Public License version 2 as published by
 * the Free Software Foundation.
 * 
 * This program 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 version
 * 2 for more details.
 * 
 * You should have received a copy of the GNU General Public License version 2
 * along with this program; if not, write to the Free Software Foundation,
 * Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
 * 
 */

import java.awt.FontMetrics;

public class Main {
    /**
     * Aligns the text on the right
     * 
     * @param fm
     *            FontMetrics
     * @param string
     *            The string to be printed
     * @param align
     *            The right hand border on which to align the text
     * @return Returns the position where the text should start printing
     */
    public static int alignRight(FontMetrics fm, String string, int align) {
        int msg_width = fm.stringWidth(string);
        int result = align - msg_width - 2;
        return result;
    }
}

Related

  1. abbreviate(String str, FontMetrics fm, int width)
  2. abbreviateName(String str, FontMetrics fm, int width)
  3. adjustFontSizeToGetPreferredWidthOfLabel(JLabel jLabel, int initialWidth)
  4. clipString(FontMetrics fm, String text, int availableWidth)
  5. clipString(FontMetrics metrics, int availableWidth, String fullText)
  6. clipString(Graphics g, String t, int width)
  7. cutString(String text, FontMetrics fontMetrics, int maxWidth)