1 /* 2 Licensed to the Apache Software Foundation (ASF) under one 3 or more contributor license agreements. See the NOTICE file 4 distributed with this work for additional information 5 regarding copyright ownership. The ASF licenses this file 6 to you under the Apache License, Version 2.0 (the 7 "License"); you may not use this file except in compliance 8 with the License. You may obtain a copy of the License at 9 10 http://www.apache.org/licenses/LICENSE-2.0 11 12 Unless required by applicable law or agreed to in writing, 13 software distributed under the License is distributed on an 14 "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY 15 KIND, either express or implied. See the License for the 16 specific language governing permissions and limitations 17 under the License. 18 =================== DO NOT EDIT THIS FILE ==================== 19 Generated by Modello 2.4.0, 20 any modifications will be overwritten. 21 ============================================================== 22 */ 23 24 package org.apache.maven.plugins.changes.model; 25 26 /** 27 * 28 * Record every release with their subsequent changes. 29 * 30 * 31 * @version $Revision$ $Date$ 32 */ 33 @SuppressWarnings( "all" ) 34 public class ChangesDocument 35 implements java.io.Serializable 36 { 37 38 //--------------------------/ 39 //- Class/Member Variables -/ 40 //--------------------------/ 41 42 /** 43 * 44 * Contains the properties of this document. 45 * 46 */ 47 private Properties properties; 48 49 /** 50 * 51 * Contains the releases of this project with the 52 * actions taken 53 * for each of the releases. 54 * 55 */ 56 private Body body; 57 58 /** 59 * Field modelEncoding. 60 */ 61 private String modelEncoding = "UTF-8"; 62 63 64 //-----------/ 65 //- Methods -/ 66 //-----------/ 67 68 /** 69 * Get contains the releases of this project with the actions 70 * taken 71 * for each of the releases. 72 * 73 * @return Body 74 */ 75 public Body getBody() 76 { 77 return this.body; 78 } //-- Body getBody() 79 80 /** 81 * Get the modelEncoding field. 82 * 83 * @return String 84 */ 85 public String getModelEncoding() 86 { 87 return this.modelEncoding; 88 } //-- String getModelEncoding() 89 90 /** 91 * Get contains the properties of this document. 92 * 93 * @return Properties 94 */ 95 public Properties getProperties() 96 { 97 return this.properties; 98 } //-- Properties getProperties() 99 100 /** 101 * Set contains the releases of this project with the actions 102 * taken 103 * for each of the releases. 104 * 105 * @param body a body object. 106 */ 107 public void setBody( Body body ) 108 { 109 this.body = body; 110 } //-- void setBody( Body ) 111 112 /** 113 * Set the modelEncoding field. 114 * 115 * @param modelEncoding a modelEncoding object. 116 */ 117 public void setModelEncoding( String modelEncoding ) 118 { 119 this.modelEncoding = modelEncoding; 120 } //-- void setModelEncoding( String ) 121 122 /** 123 * Set contains the properties of this document. 124 * 125 * @param properties a properties object. 126 */ 127 public void setProperties( Properties properties ) 128 { 129 this.properties = properties; 130 } //-- void setProperties( Properties ) 131 132 }