Beispiel #1
0
 /// <summary>
 /// Adds a component to the listOfComponents list.
 /// </summary>
 /// <param name="givenComponent"></param>
 /// <returns>True if successfull, false otherwise</returns>
 public virtual bool AddComponentDrawnToGridList(ComponentDrawn givenComponent)
 {
     throw new System.NotImplementedException();
 }
Beispiel #2
0
 /// <summary>
 /// Opposite of the other method.
 /// </summary>
 /// <param name="givenComponent"></param>
 /// <returns>True if successfull, false otherwise.</returns>
 public virtual bool RemoveComponentDrawnFromGridList(ComponentDrawn givenComponent)
 {
     throw new System.NotImplementedException();
 }
 /// <summary>
 /// A "ComponentDrawn" is passed and the particular componentDrawn's properties should be changed.
 /// </summary>
 /// <param name="givenComponent"></param>
 /// <returns>True if successfull, false otherwise.</returns>
 public virtual bool EditComponentDrawn(ComponentDrawn givenComponent)
 {
     throw new System.NotImplementedException();
 }