Example #1
0
 public ApplicationInfo()
 {
     Services       = new ServiceInfoCollection(this);
     Models         = new ModelInfoCollection(this);
     UserInterfaces = new UserInterfaceInfoCollection(this);
     Enumerations   = new EnumerationInfoCollection(this);
     Databases      = new DatabaseInfoCollection(this);
 }
Example #2
0
 /// <summary>
 /// Set the model info and retreive it's label file.
 /// </summary>
 /// <param name="modelInfo">Instance of <c>ModelInfoCollection</c> to retreive label file for</param>
 public void setModelAndLabelFile(ModelInfoCollection modelInfo, AxLabelFile labelFile = null)
 {
     modelInfoCollection = modelInfo;
     if (labelFile == null)
     {
         currentLabelFile = this.GetLabelFile();
     }
     else
     {
         currentLabelFile = labelFile;
     }
 }