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

org.fugerit.java.doc.base.model.DocFooter Maven / Gradle / Ivy

There is a newer version: 8.11.9
Show newest version
/*****************************************************************

	Fugerit Java Library 

	Copyright (c) 2007 Fugerit

	All rights reserved. This program and the accompanying materials
	are made available under the terms of the Apache License v2.0
	which accompanies this distribution, and is available at
	http://www.apache.org/licenses/
	(txt version : http://www.apache.org/licenses/LICENSE-2.0.txt
	html version : http://www.apache.org/licenses/LICENSE-2.0.html)

   This product includes software developed at
   The Apache Software Foundation (http://www.apache.org/).

*****************************************************************/
/*
 * @(#)DocFooter.java
 *
 * @project     : org.fugerit.java.doc.base
 * @package     : org.fugerit.java.doc.base
 * @creation	: 16/lug/07
 * @release		: xxxx.xx.xx
 */
package org.fugerit.java.doc.base.model;

/**
 * 
 *
 * @author Fugerit
 *
 */
public class DocFooter extends DocHeaderFooter {

	/**
	 * 
	 */
	private static final long serialVersionUID = -522063370024780951L;

	public static final String TAG_NAME = "footer";
	
	public static final String TAG_NAME_EXT = "footer-ext";
	
	public DocFooter() {
		this.useFooter = false;
	}
	
	private boolean useFooter;

	/**
	 * @return the useFooter
	 */
	public boolean isUseFooter() {
		return useFooter;
	}

	/**
	 * @param useFooter the useFooter to set
	 */
	public void setUseFooter(boolean useFooter) {
		this.useFooter = useFooter;
	}
	
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy