All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.eclipse.birt.report.engine.internal.document.IPageHintConstant Maven / Gradle / Ivy

There is a newer version: 4.6.0-20160607
Show newest version
/*******************************************************************************
 * Copyright (c) 2004, 2009 Actuate Corporation.
 * All rights reserved. This program and the accompanying materials
 * are made available under the terms of the Eclipse Public License v1.0
 * which accompanies this distribution, and is available at
 * http://www.eclipse.org/legal/epl-v10.html
 *
 * Contributors:
 *  Actuate Corporation  - initial API and implementation
 *******************************************************************************/

package org.eclipse.birt.report.engine.internal.document;

public interface IPageHintConstant
{

	/**
	 * version used before 2.0
	 */
	static final int VERSION_0 = 0;
	/**
	 * this is the version used before 2.1.3 and 2.2RC0
	 */
	static final int VERSION_1 = 1;

	/**
	 * this is the version used by 2.1.3 and 2.2RC0 release.
	 */
	static final int VERSION_2 = 2;
	
	/**
	 * this is the version used by 2.2RC2 release.
	 */
	static final int VERSION_3 = 3;
	/**
	 * this is the version used by 2.3M4 release.
	 */
	static final int VERSION_4 = 4;
	
	/**
	 * this is the version used by 2.3M6 release.
	 */
	static final int VERSION_5 = 5;
	
	/**
	 * this is the version used by fixed layout.
	 */
	static final int VERSION_FIXED_LAYOUT = 6;
	
	/**
	 * used after 2.5.0RC1 release, add page variable support
	 */
	static final int VERSION_6 = 6;
	/**
	 * the current release is version 5.
	 */
	static final int VERSION = VERSION_6;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy