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

org.eclipse.birt.report.engine.emitter.ods.BookmarkDef Maven / Gradle / Ivy

There is a newer version: 4.6.0-20160607
Show newest version
/*******************************************************************************
 * Copyright (c) 2010 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.emitter.ods;

public class BookmarkDef
{

	private String name;
	private int columnNo;
	private int rowNo;
	private String sheetName;
	private String generatedName;

	public String getValidName( )
	{
		return generatedName == null ? name : generatedName;
	}

	public void setGeneratedName( String generatedName )
	{
		this.generatedName = generatedName;
	}

	public BookmarkDef( String name )
	{
		this.name = name;
	}

	public String getName( )
	{
		return name;
	}

	public void setName( String name )
	{
		this.name = name;
	}

	public int getColumnNo( )
	{
		return columnNo;
	}

	public void setColumnNo( int columnNo )
	{
		this.columnNo = columnNo;
	}

	public int getRowNo( )
	{
		return rowNo;
	}

	public void setRowNo( int rowNo )
	{
		this.rowNo = rowNo;
	}

	public String getSheetName( )
	{
		return this.sheetName;
	}

	public void setSheetName( String sheetName )
	{
		this.sheetName = sheetName;
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy