build.java

来自「How to get the java home dir.」· Java 代码 · 共 32 行

JAVA
32
字号
package com.mindprod.common11;

import java.awt.Color;

/**
 * @author Roedy Green, Canadian Mind Products
 * @version 1.0, 19-Sep-2007 Created with IntelliJ IDEA.
 */
public class Build
    {
    // ------------------------------ FIELDS ------------------------------

    /**
     * incremented for each microrelease even when version numbers are not changed.  Global to all apps.
     */
    public static final int BUILD_NUMBER = 9208;

    /**
     * current year, used for copyright
     */
    public static final int THIS_COPYRIGHT_YEAR = Misc.thisYear();

    /**
     * colour to let app blend with CMP background
     */
    public static final Color BLEND_BACKGROUND = new Color( 0xf4fff7 );
    /**
     * name of the code signing cert without .cer
     */
    public static final String MINDPRODCERT = "mindprodcert2008dsa";
    }

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?