/* * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER. * * Copyright 2008 jOpenDocument, by ILM Informatique. All rights reserved. * * The contents of this file are subject to the terms of the GNU * General Public License Version 3 only ("GPL"). * You may not use this file except in compliance with the License. * You can obtain a copy of the License at http://www.gnu.org/licenses/gpl-3.0.html * See the License for the specific language governing permissions and limitations under the License. * * When distributing the software, include this License Header Notice in each file. * */ package org.jopendocument.model.form; import org.jopendocument.model.office.OfficeEvents; /** * */ public class FormHidden { protected String formName; protected FormProperties formProperties; protected String formServiceName; protected String formValue; protected OfficeEvents officeEvents; /** * Gets the value of the formName property. * * @return possible object is {@link String } * */ public String getFormName() { return this.formName; } /** * Gets the value of the formProperties property. * * @return possible object is {@link FormProperties } * */ public FormProperties getFormProperties() { return this.formProperties; } /** * Gets the value of the formServiceName property. * * @return possible object is {@link String } * */ public String getFormServiceName() { return this.formServiceName; } /** * Gets the value of the formValue property. * * @return possible object is {@link String } * */ public String getFormValue() { return this.formValue; } /** * Gets the value of the officeEvents property. * * @return possible object is {@link OfficeEvents } * */ public OfficeEvents getOfficeEvents() { return this.officeEvents; } /** * Sets the value of the formName property. * * @param value allowed object is {@link String } * */ public void setFormName(final String value) { this.formName = value; } /** * Sets the value of the formProperties property. * * @param value allowed object is {@link FormProperties } * */ public void setFormProperties(final FormProperties value) { this.formProperties = value; } /** * Sets the value of the formServiceName property. * * @param value allowed object is {@link String } * */ public void setFormServiceName(final String value) { this.formServiceName = value; } /** * Sets the value of the formValue property. * * @param value allowed object is {@link String } * */ public void setFormValue(final String value) { this.formValue = value; } /** * Sets the value of the officeEvents property. * * @param value allowed object is {@link OfficeEvents } * */ public void setOfficeEvents(final OfficeEvents value) { this.officeEvents = value; } }