/// <summary>
 /// Removes the pier label assignment of the object.
 /// </summary>
 /// <param name="app">The application.</param>
 protected void removePier(IPier app)
 {
     app.SetPier(Name, Constants.NONE);
     _pierName = string.Empty;
     _pier     = null;
 }
 /// <summary>
 /// Adds the pier label assignment of the object.
 /// </summary>
 /// <param name="app">The application.</param>
 /// <param name="pier">The pier assignment.</param>
 protected void addPier(IPier app, Pier pier)
 {
     app.SetPier(Name, pier.Name);
     _pierName = pier.Name;
     _pier     = pier;
 }
Ejemplo n.º 3
0
 /// <summary>
 /// Removes the pier label assignment of the object.
 /// </summary>
 /// <param name="app">The application.</param>
 protected void removePier(IPier app)
 {
     app.SetPier(Name, Constants.None);
     Pier = null;
 }
 /// <summary>
 /// Retrieves the pier label assignments of an object.
 /// </summary>
 /// <param name="app">The application.</param>
 /// <returns>System.String.</returns>
 protected string getPierName(IPier app)
 {
     _pierName = app.GetPier(Name);
     return(_pierName);
 }
Ejemplo n.º 5
0
 /// <summary>
 /// Retrieves the pier label assignments of an object.
 /// </summary>
 /// <param name="app">The application.</param>
 protected void getPier(IPier app)
 {
     Pier = Pier.Factory(app.GetPier(Name));
 }