Here you can find the source of alignRight(FontMetrics fm, String string, int align)
Parameter | Description |
---|---|
fm | FontMetrics |
string | The string to be printed |
align | The right hand border on which to align the text |
public static int alignRight(FontMetrics fm, String string, int align)
//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; } }