public DisplayBindingDescriptor(SkyMap.Net.Core.Codon codon)
 {
     this.isSecondary = codon.Properties["type"] == "Secondary";
     if ((!this.isSecondary && (codon.Properties["type"] != "")) && (codon.Properties["type"] != "Primary"))
     {
         MessageService.ShowWarning("Unknown display binding type: " + codon.Properties["type"]);
     }
     this.codon = codon;
 }
 public LanguageBindingDescriptor(SkyMap.Net.Core.Codon codon)
 {
     this.codon = codon;
 }