User Tools

Site Tools


thinkgeo.mapsuite.core.cogocall

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revision Previous revision
Next revision
Previous revision
thinkgeo.mapsuite.core.cogocall [2015/09/18 05:39]
admin
thinkgeo.mapsuite.core.cogocall [2017/03/16 21:59] (current)
Line 1: Line 1:
 ====== ThinkGeo.MapSuite.Core.CogoCall ====== ====== ThinkGeo.MapSuite.Core.CogoCall ======
 +
 +{{section>​upgrade_map_suite_to_10.0}}
 +
 This is an abstract class which is the basis for each of the different types of COGO calls In the abstract class we define that a call need to be able to produce a line segment as well as produce its traverse and description string. This is an abstract class which is the basis for each of the different types of COGO calls In the abstract class we define that a call need to be able to produce a line segment as well as produce its traverse and description string.
 ===== Inheritance Hierarchy ===== ===== Inheritance Hierarchy =====
Line 14: Line 17:
 ** {{wiki:​ProtectedMethod.gif|}} CogoCall() ** ** {{wiki:​ProtectedMethod.gif|}} CogoCall() **
  
-N/A+  * //N/A//
 == Remarks == == Remarks ==
-N/A+  * //N/A//
 == Parameters == == Parameters ==
 <div newline></​div>​ <div newline></​div>​
Line 22: Line 25:
 ** {{wiki:​PublicMethod.gif|}} GetCallLine(PointShape,​PointShape) ** ** {{wiki:​PublicMethod.gif|}} GetCallLine(PointShape,​PointShape) **
  
-N/A+  * //N/A//
 == Remarks == == Remarks ==
-N/A+  * //N/A//
  
 == Return Value == == Return Value ==
Line 42: Line 45:
 ** {{wiki:​PublicMethod.gif|}} GetDescriptionString(CogoDirectionType,​AngleUnit) ** ** {{wiki:​PublicMethod.gif|}} GetDescriptionString(CogoDirectionType,​AngleUnit) **
  
-This method is the concrete method which always calls the associated core method. ​ This is used to give us, the framework designer, flexability when user override the core method.+  * //This method is the concrete method which always calls the associated core method. ​ This is used to give us, the framework designer, flexability when user override the core method.//
 == Remarks == == Remarks ==
-N/A+  * //N/A//
  
 == Return Value == == Return Value ==
Line 62: Line 65:
 ** {{wiki:​PublicMethod.gif|}} GetTraverseString(CogoDirectionType,​AngleUnit) ** ** {{wiki:​PublicMethod.gif|}} GetTraverseString(CogoDirectionType,​AngleUnit) **
  
-This method is the concrete method which always calls the associated core method. ​ This is used to give us, the framework designer, flexability when user override the core method.+  * //This method is the concrete method which always calls the associated core method. ​ This is used to give us, the framework designer, flexability when user override the core method.//
 == Remarks == == Remarks ==
-N/A+  * //N/A//
  
 == Return Value == == Return Value ==
Line 82: Line 85:
 ** {{wiki:​PublicMethod.gif|}} LoadFromTraverseString(String,​CogoDirectionType,​AngleUnit) ** ** {{wiki:​PublicMethod.gif|}} LoadFromTraverseString(String,​CogoDirectionType,​AngleUnit) **
  
-This method is the concrete method which always calls the associated core method. ​ This is used to give us, the framework designer, flexability when user override the core method.+  * //This method is the concrete method which always calls the associated core method. ​ This is used to give us, the framework designer, flexability when user override the core method.//
 == Remarks == == Remarks ==
-N/A+  * //N/A//
  
 == Return Value == == Return Value ==
Line 106: Line 109:
 ** {{wiki:​PublicMethod.gif|}} ToString() ** ** {{wiki:​PublicMethod.gif|}} ToString() **
  
-N/A+  * //N/A//
 == Remarks == == Remarks ==
-N/A+  * //N/A//
  
 == Return Value == == Return Value ==
Line 118: Line 121:
 ** {{wiki:​PublicMethod.gif|}} Equals(Object) ** ** {{wiki:​PublicMethod.gif|}} Equals(Object) **
  
-N/A+  * //N/A//
 == Remarks == == Remarks ==
-N/A+  * //N/A//
  
 == Return Value == == Return Value ==
Line 134: Line 137:
 ** {{wiki:​PublicMethod.gif|}} GetHashCode() ** ** {{wiki:​PublicMethod.gif|}} GetHashCode() **
  
-N/A+  * //N/A//
 == Remarks == == Remarks ==
-N/A+  * //N/A//
  
 == Return Value == == Return Value ==
Line 146: Line 149:
 ** {{wiki:​PublicMethod.gif|}} GetType() ** ** {{wiki:​PublicMethod.gif|}} GetType() **
  
-N/A+  * //N/A//
 == Remarks == == Remarks ==
-N/A+  * //N/A//
  
 == Return Value == == Return Value ==
Line 159: Line 162:
 ** {{wiki:​ProtectedMethod.gif|}} GetCallLineCore(PointShape,​PointShape) ** ** {{wiki:​ProtectedMethod.gif|}} GetCallLineCore(PointShape,​PointShape) **
  
-N/A+  * //N/A//
 == Remarks == == Remarks ==
-N/A+  * //N/A//
  
 == Return Value == == Return Value ==
Line 179: Line 182:
 ** {{wiki:​ProtectedMethod.gif|}} GetDescriptionStringCore(CogoDirectionType,​AngleUnit) ** ** {{wiki:​ProtectedMethod.gif|}} GetDescriptionStringCore(CogoDirectionType,​AngleUnit) **
  
-This abstract method has to be overridden in sub classes. ​ It is responsible for converting the call into a descriptive string which will display on the call grid+  * //This abstract method has to be overridden in sub classes. ​ It is responsible for converting the call into a descriptive string which will display on the call grid//
 == Remarks == == Remarks ==
-N/A+  * //N/A//
  
 == Return Value == == Return Value ==
Line 199: Line 202:
 ** {{wiki:​ProtectedMethod.gif|}} GetTraverseStringCore(CogoDirectionType,​AngleUnit) ** ** {{wiki:​ProtectedMethod.gif|}} GetTraverseStringCore(CogoDirectionType,​AngleUnit) **
  
-This abstract method has to be overridden in sub classes. ​ It is responsible for converting the call into a traverse string used to build up the traverse file for saving+  * //This abstract method has to be overridden in sub classes. ​ It is responsible for converting the call into a traverse string used to build up the traverse file for saving//
 == Remarks == == Remarks ==
-N/A+  * //N/A//
  
 == Return Value == == Return Value ==
Line 219: Line 222:
 ** {{wiki:​ProtectedMethod.gif|}} LoadFromTraverseStringCore(String,​CogoDirectionType,​AngleUnit) ** ** {{wiki:​ProtectedMethod.gif|}} LoadFromTraverseStringCore(String,​CogoDirectionType,​AngleUnit) **
  
-This method will populate this class from a single line of a traverse string+  * //This method will populate this class from a single line of a traverse string//
 == Remarks == == Remarks ==
-N/A+  * //N/A//
  
 == Return Value == == Return Value ==
Line 243: Line 246:
 ** {{wiki:​ProtectedMethod.gif|}} Finalize() ** ** {{wiki:​ProtectedMethod.gif|}} Finalize() **
  
-N/A+  * //N/A//
 == Remarks == == Remarks ==
-N/A+  * //N/A//
  
 == Return Value == == Return Value ==
Line 255: Line 258:
 ** {{wiki:​ProtectedMethod.gif|}} MemberwiseClone() ** ** {{wiki:​ProtectedMethod.gif|}} MemberwiseClone() **
  
-N/A+  * //N/A//
 == Remarks == == Remarks ==
-N/A+  * //N/A//
  
 == Return Value == == Return Value ==
thinkgeo.mapsuite.core.cogocall.1442554754.txt.gz · Last modified: 2015/09/18 05:39 by admin