File: JiuInfo.java

package info (click to toggle)
java-imaging-utilities 0.14.2%2B3-4
  • links: PTS
  • area: main
  • in suites: jessie, jessie-kfreebsd, wheezy
  • size: 2,304 kB
  • ctags: 3,737
  • sloc: java: 31,190; sh: 238; xml: 30; makefile: 19
file content (38 lines) | stat: -rw-r--r-- 867 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
/*
 * JiuInfo
 * 
 * Copyright (c) 2001, 2002, 2003, 2004, 2005, 2006 Marco Schmidt.
 * All rights reserved.
 */

package net.sourceforge.jiu.apps;

/**
 * Contains several constants with information on JIU.
 * @author Marco Schmidt
 */
public interface JiuInfo
{
	/** 
	 * Three int values for the JIU version, in order (major, minor, patch).
	 */
	int[] JIU_NUMERICAL_VERSION = {0, 15, 0};

	/**
	 * Version as String, created from {@link #JIU_NUMERICAL_VERSION}.
	 */
	String JIU_VERSION = 
		JIU_NUMERICAL_VERSION[0] + "." + 
		JIU_NUMERICAL_VERSION[1] + "." +
		JIU_NUMERICAL_VERSION[2];

	/**
	 * URL of the homepage of the JIU project.
	 */
	String JIU_HOMEPAGE = "http://schmidt.devlib.org/jiu/";

	/**
	 * Address for feedback on JIU.
	 */
	String JIU_FEEDBACK_ADDRESS = "http://schmidt.devlib.org/jiu/feedback.html";
}