/* * 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 FormFrame { protected String formDisabled; protected String formFor; protected String formLabel; protected String formPrintable; protected FormProperties formProperties; protected String formTitle; protected OfficeEvents officeEvents; /** * Gets the value of the formDisabled property. * * @return possible object is {@link String } * */ public String getFormDisabled() { if (this.formDisabled == null) { return "false"; } else { return this.formDisabled; } } /** * Gets the value of the formFor property. * * @return possible object is {@link String } * */ public String getFormFor() { return this.formFor; } /** * Gets the value of the formLabel property. * * @return possible object is {@link String } * */ public String getFormLabel() { return this.formLabel; } /** * Gets the value of the formPrintable property. * * @return possible object is {@link String } * */ public String getFormPrintable() { if (this.formPrintable == null) { return "true"; } else { return this.formPrintable; } } /** * Gets the value of the formProperties property. * * @return possible object is {@link FormProperties } * */ public FormProperties getFormProperties() { return this.formProperties; } /** * Gets the value of the formTitle property. * * @return possible object is {@link String } * */ public String getFormTitle() { return this.formTitle; } /** * Gets the value of the officeEvents property. * * @return possible object is {@link OfficeEvents } * */ public OfficeEvents getOfficeEvents() { return this.officeEvents; } /** * Sets the value of the formDisabled property. * * @param value allowed object is {@link String } * */ public void setFormDisabled(final String value) { this.formDisabled = value; } /** * Sets the value of the formFor property. * * @param value allowed object is {@link String } * */ public void setFormFor(final String value) { this.formFor = value; } /** * Sets the value of the formLabel property. * * @param value allowed object is {@link String } * */ public void setFormLabel(final String value) { this.formLabel = value; } /** * Sets the value of the formPrintable property. * * @param value allowed object is {@link String } * */ public void setFormPrintable(final String value) { this.formPrintable = 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 formTitle property. * * @param value allowed object is {@link String } * */ public void setFormTitle(final String value) { this.formTitle = value; } /** * Sets the value of the officeEvents property. * * @param value allowed object is {@link OfficeEvents } * */ public void setOfficeEvents(final OfficeEvents value) { this.officeEvents = value; } }