| |||||||||||||||||
| Source File | Conditionals | Statements | Methods | TOTAL | |||||||||||||
| Config\XmlConfigurationConst.cs | - | - | - | - |
|
||||||||||||
| 1 | #region Copyright | |
| 2 | /* | |
| 3 | ShowX. Maps business objects into presentation layer. | |
| 4 | Copyright (C) 2005 Jesus Diaz. | |
| 5 | ||
| 6 | This library is free software; you can redistribute it and/or | |
| 7 | modify it under the terms of the GNU Lesser General Public | |
| 8 | License as published by the Free Software Foundation; either | |
| 9 | version 2.1 of the License, or (at your option) any later version. | |
| 10 | ||
| 11 | This library is distributed in the hope that it will be useful, | |
| 12 | but WITHOUT ANY WARRANTY; without even the implied warranty of | |
| 13 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |
| 14 | Lesser General Public License for more details. | |
| 15 | ||
| 16 | You should have received a copy of the GNU Lesser General Public | |
| 17 | License along with this library; if not, write to the Free Software | |
| 18 | Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA. | |
| 19 | ||
| 20 | For project details see: http://showx.sourceforge.net | |
| 21 | */ | |
| 22 | #endregion | |
| 23 | ||
| 24 | namespace ShowX.Config | |
| 25 | { | |
| 26 | /// <summary> | |
| 27 | /// XmlConfigurationTags define xml tags and constants used in configuration files. | |
| 28 | /// </summary> | |
| 29 | public class XmlConfigurationConst | |
| 30 | { | |
| 31 | #region Xml tag constants | |
| 32 | ||
| 33 | /// <summary> | |
| 34 | /// Mapping mode tag. | |
| 35 | /// </summary> | |
| 36 | public static string mappingModeAttr = "mapping-mode"; | |
| 37 | /// <summary> | |
| 38 | /// Root tag. | |
| 39 | /// </summary> | |
| 40 | public static string rootTag = "showx"; | |
| 41 | /// <summary> | |
| 42 | /// Class mappings tag. | |
| 43 | /// </summary> | |
| 44 | public static string classMappingsTag = "class-mappings"; | |
| 45 | /// <summary> | |
| 46 | /// Mapping tag. | |
| 47 | /// </summary> | |
| 48 | public static string mappingTag = "mapping"; | |
| 49 | /// <summary> | |
| 50 | /// Class Name tag. | |
| 51 | /// </summary> | |
| 52 | public static string mappingClassNameAttr = "class-name"; | |
| 53 | /// <summary> | |
| 54 | /// Mapping file tag. | |
| 55 | /// </summary> | |
| 56 | public static string mappingMappingFileAttr = "mapping-file"; | |
| 57 | ||
| 58 | #endregion | |
| 59 | ||
| 60 | #region Xml value constants | |
| 61 | ||
| 62 | /// <summary> | |
| 63 | /// Attribute model constant. | |
| 64 | /// </summary> | |
| 65 | public static string modelAttrStr = "Attribute"; | |
| 66 | /// <summary> | |
| 67 | /// XML model constant. | |
| 68 | /// </summary> | |
| 69 | public static string modelXMLStr = "XML"; | |
| 70 | #endregion | |
| 71 | } | |
| 72 | } | |
| 73 |
|
||||||||