alvinalexander.com | career | drupal | java | mac | mysql | perl | scala | uml | unix  

What this is

This file is included in the DevDaily.com "Java Source Code Warehouse" project. The intent of this project is to help you "Learn Java by Example" TM.

Other links

The source code

/*
 * $Header: /cvsroot/mvnforum/myvietnam/src/net/myvietnam/mvncore/MVNCoreInfo.java,v 1.59 2005/02/24 07:35:29 minhnn Exp $
 * $Author: minhnn $
 * $Revision: 1.59 $
 * $Date: 2005/02/24 07:35:29 $
 *
 * ====================================================================
 *
 * Copyright (C) 2002-2005 by MyVietnam.net
 *
 * This program 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 2
 * of the License, or any later version.
 *
 * All copyright notices regarding MyVietnam and MyVietnam CoreLib
 * MUST remain intact in the scripts and source code.
 *
 * 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 for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program; if not, write to the Free Software
 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
 *
 * Correspondence and Marketing Questions can be sent to:
 * info@MyVietnam.net
 *
 * @author: Minh Nguyen  minhnn@MyVietnam.net
 * @author: Mai  Nguyen  mai.nh@MyVietnam.net
 */
package net.myvietnam.mvncore;

import java.awt.*;
import java.awt.image.BufferedImage;

public class MVNCoreInfo {

    private MVNCoreInfo() {
    }

    private static String PRODUCT_NAME         = "MyVietnam WebApp Framework - Core Lib";

    private static String PRODUCT_DESC         = "MyVietnam Web Application Framework - Core Library";

    private static String PRODUCT_VERSION      = "1.8.0-dev";

    private static String PRODUCT_RELEASE_DATE = "24 February 2005";

    private static String PRODUCT_HOMEPAGE     = "http://www.MyVietnam.net";


    public static String getProductName() {
        return PRODUCT_NAME;
    }

    public static String getProductDesc() {
        return PRODUCT_DESC;
    }

    public static String getProductHomepage() {
        return PRODUCT_HOMEPAGE;
    }

    public static String getProductReleaseDate() {
        return PRODUCT_RELEASE_DATE;
    }

    public static String getProductVersion() {
        return PRODUCT_VERSION;
    }

    public static BufferedImage getImage() {

        String str = PRODUCT_VERSION + " on " + PRODUCT_RELEASE_DATE;
        int IMAGE_WIDTH  = 250;
        int IMAGE_HEIGHT = 30;

        BufferedImage bufferedImage = new BufferedImage(IMAGE_WIDTH, IMAGE_HEIGHT, BufferedImage.TYPE_INT_RGB);
        Graphics2D g = bufferedImage.createGraphics();
        g.setBackground(Color.blue);
        g.setColor(Color.white);
        g.draw3DRect(0, 0, IMAGE_WIDTH, IMAGE_HEIGHT, false);
        FontMetrics fontMetrics = g.getFontMetrics();
        int strWidth  = fontMetrics.stringWidth(str);
        int strHeight = fontMetrics.getAscent() + fontMetrics.getDescent();
        g.drawString(str, (IMAGE_WIDTH - strWidth) / 2, IMAGE_HEIGHT - ((IMAGE_HEIGHT - strHeight) / 2) - fontMetrics.getDescent());
        g.dispose(); // free resource
        return bufferedImage;
    }

}
... this post is sponsored by my books ...

#1 New Release!

FP Best Seller

 

new blog posts

 

Copyright 1998-2021 Alvin Alexander, alvinalexander.com
All Rights Reserved.

A percentage of advertising revenue from
pages under the /java/jwarehouse URI on this website is
paid back to open source projects.