Quintiq file version 2.0 
 | 
#parent: #root 
 | 
Method SetDescriptionAnchor ( 
 | 
  Trip trip, 
 | 
  String comment 
 | 
) 
 | 
{ 
 | 
  TextBody: 
 | 
  [* 
 | 
    anchordescr := comment + 'TRIP ' + trip.LaneLeg().Lane().Unit().Name() + ':'+ trip.LaneLeg().Lane().Name() + String::NewLine()  
 | 
                    + [String] trip.Departure() + [String]trip.Arrival() + String::NewLine() 
 | 
                    + trip.ID() + String::NewLine() 
 | 
                    + 'EIS='  
 | 
                    + [String] trip.EstimatedImprovementScore() 
 | 
                    + 'Tried='  
 | 
                    + [String] trip.MetaOptimizerTried(); 
 | 
     
 | 
    this.DescriptionSelectedAnchor( this.DescriptionSelectedAnchor() + anchordescr ); 
 | 
  *] 
 | 
  InterfaceProperties { Accessibility: 'Module' } 
 | 
} 
 |