1 package org.codehaus.mojo.natives.plugin; 2 3 /* 4 * The MIT License 5 * 6 * Copyright (c) 2004, The Codehaus 7 * 8 * Permission is hereby granted, free of charge, to any person obtaining a copy of this software and 9 * associated documentation files (the "Software"), to deal in the Software without restriction, 10 * including without limitation the rights to use, copy, modify, merge, publish, distribute, 11 * sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is 12 * furnished to do so, subject to the following conditions: 13 * 14 * The above copyright notice and this permission notice shall be included in all copies or 15 * substantial portions of the Software. 16 * 17 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT 18 * NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND 19 * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, 20 * DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 21 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. 22 */ 23 24 public class JavahInclude 25 { 26 private String className; 27 28 private String headerName; 29 30 public String getClassName() 31 { 32 return className; 33 } 34 35 public void setClassName( String className ) 36 { 37 this.className = className; 38 } 39 40 public String getHeaderName() 41 { 42 return headerName; 43 } 44 45 public void setHeaderName( String headerName ) 46 { 47 this.headerName = headerName; 48 } 49 50 }