View Javadoc
1 2 /* 3 LoaderGenerator - tool for generated xml, sql and doml file needed for Octopus. 4 5 6 Copyright (C) 2003 Together 7 8 This library is free software; you can redistribute it and/or 9 modify it under the terms of the GNU Lesser General Public 10 License as published by the Free Software Foundation; either 11 version 2.1 of the License, or (at your option) any later version. 12 13 This library is distributed in the hope that it will be useful, 14 but WITHOUT ANY WARRANTY; without even the implied warranty of 15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 16 Lesser General Public License for more details. 17 18 You should have received a copy of the GNU Lesser General Public 19 License along with this library; if not, write to the Free Software 20 Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 21 */ 22 23 package org.webdocwf.util.loader.generator; 24 25 /*** 26 * IncludeTagAttributes class stores the parameters of include tag for LoaderJob.xml file. 27 * @author Radoslav Dutina 28 * @version 1.0 29 */ 30 public class IncludeTagAttributes { 31 private String href="xml/ImportDefinition.oli"; 32 private String parse="xml"; 33 34 /*** 35 * This method sets value of href parameter. 36 * @param _href is the value of parameter. 37 */ 38 public void setHref(String _href){ 39 href=_href; 40 } 41 42 /*** 43 * This method read value of href parameter. 44 * @return value of parameter. 45 */ 46 public String getHref(){ 47 return href; 48 } 49 50 /*** 51 * This method sets value of parse parameter. 52 * @param _parse is the value of parameter. 53 */ 54 public void setParse(String _parse){ 55 parse=_parse; 56 } 57 58 /*** 59 * This method read value of parse parameter. 60 * @return value of parameter. 61 */ 62 public String getParse(){ 63 return parse; 64 } 65 66 67 }

This page was automatically generated by Maven