[mapguide-commits] r5980 - trunk/Tools/Maestro/OSGeo.MapGuide.MaestroAPI/ObjectModels

svn_mapguide at osgeo.org svn_mapguide at osgeo.org
Wed Jul 6 13:05:03 EDT 2011


Author: jng
Date: 2011-07-06 10:05:02 -0700 (Wed, 06 Jul 2011)
New Revision: 5980

Modified:
   trunk/Tools/Maestro/OSGeo.MapGuide.MaestroAPI/ObjectModels/ApplicationDefinition.cs
Log:
Mono-related fixes and workarounds.


Modified: trunk/Tools/Maestro/OSGeo.MapGuide.MaestroAPI/ObjectModels/ApplicationDefinition.cs
===================================================================
--- trunk/Tools/Maestro/OSGeo.MapGuide.MaestroAPI/ObjectModels/ApplicationDefinition.cs	2011-07-06 16:56:31 UTC (rev 5979)
+++ trunk/Tools/Maestro/OSGeo.MapGuide.MaestroAPI/ObjectModels/ApplicationDefinition.cs	2011-07-06 17:05:02 UTC (rev 5980)
@@ -272,11 +272,13 @@
             };
         }
 
+        [XmlIgnore]
         IMapSet IApplicationDefinition.MapSet
         {
             get { return this; }
         }
 
+        [XmlIgnore]
         IExtension IExtensibleElement.Extension
         {
             get
@@ -285,6 +287,7 @@
             }
         }
 
+        [XmlIgnore]
         IEnumerable<IMapGroup> IMapSet.MapGroups
         {
             get 
@@ -296,6 +299,7 @@
             }
         }
 
+        [XmlIgnore]
         int IMapSet.MapGroupCount
         {
             get { return this.MapSet.Count; }
@@ -321,6 +325,7 @@
             }
         }
 
+        [XmlIgnore]
         public IEnumerable<IWidgetSet> WidgetSets
         {
             get 
@@ -370,6 +375,7 @@
             get { return this.Item.Count; }
         }
 
+        [XmlIgnore]
         public IEnumerable<IUIItem> Items
         {
             get
@@ -451,11 +457,13 @@
 
     partial class FlyoutItemType : IFlyoutItem
     {
+        [XmlIgnore]
         public int ItemCount
         {
             get { return this.Item.Count; }
         }
 
+        [XmlIgnore]
         public IEnumerable<IUIItem> Items
         {
             get 
@@ -547,6 +555,7 @@
 
     partial class WidgetSetType : IWidgetSet
     {
+        [XmlIgnore]
         public IEnumerable<IWidgetContainer> Containers
         {
             get 
@@ -558,6 +567,7 @@
             }
         }
 
+        [XmlIgnore]
         public int ContainerCount
         {
             get { return this.Container.Count; }
@@ -583,6 +593,7 @@
             }
         }
 
+        [XmlIgnore]
         IMapWidget IWidgetSet.MapWidget
         {
             get 
@@ -591,12 +602,13 @@
             }
         }
 
-
+        [XmlIgnore]
         public int WidgetCount
         {
             get { return this.Widget.Count; }
         }
 
+        [XmlIgnore]
         public IEnumerable<IWidget> Widgets
         {
             get 
@@ -629,6 +641,7 @@
 
     partial class ContainerType : IWidgetContainer
     {
+        [XmlIgnore]
         IExtension IExtensibleElement.Extension
         {
             get { return this.Extension; }
@@ -637,6 +650,7 @@
 
     partial class WidgetType : IWidget 
     {
+        [XmlIgnore]
         IExtension IExtensibleElement.Extension
         {
             get
@@ -710,6 +724,7 @@
             return new MapViewType() { CenterX = x, CenterY = y, Scale = scale };
         }
 
+        [XmlIgnore]
         int IMapGroup.MapCount
         {
             get
@@ -723,6 +738,7 @@
             return (IMap)this.Map[index];
         }
 
+        [XmlIgnore]
         IMapView IMapGroup.InitialView
         {
             get
@@ -735,6 +751,7 @@
             }
         }
 
+        [XmlIgnore]
         IEnumerable<IMap> IMapGroup.Map
         {
             get 
@@ -766,6 +783,7 @@
             }
         }
 
+        [XmlIgnore]
         IExtension IExtensibleElement.Extension
         {
             get
@@ -799,6 +817,7 @@
 
     partial class MapType : IMap
     {
+        [XmlIgnore]
         IExtension IExtensibleElement.Extension
         {
             get
@@ -807,6 +826,7 @@
             }
         }
 
+        [XmlIgnore]
         bool IMap.SingleTile
         {
             get



More information about the mapguide-commits mailing list