Difference between revisions of "CreateCity"

From CMSC 420
m
Line 9: Line 9:
  
 
== Possible <output> ==
 
== Possible <output> ==
(none)
+
* (None)
  
 
== Possible <error> types (In priority order) ==  
 
== Possible <error> types (In priority order) ==  

Revision as of 23:35, 10 September 2013

Creates a city (a vertex) with the specified name, coordinates, radius, and color (the last two attributes will be used in later project parts). A city can be successfully created if its name is unique (i.e., there isn't already another city with the same name) and its coordinates are also unique (i.e., there isn't already another city with the same $(x,y)$ coordinate). Names are case-sensitive.

Parameters (In output order)[edit]

  • name
  • x
  • y
  • radius
  • color

Possible <output>[edit]

  • (None)

Possible <error> types (In priority order)[edit]

  • duplicateCityName
  • duplicateCityCoordinates

<success> Example[edit]

   <success>
       <command name="createCity"/>
       <parameters>
           <name value="Annapolis"/>
           <x value="12"/>
           <y value="14"/>
           <radius value="15"/>
           <color value="red"/>
       </parameters>
       <output/>
   </success>