Example #1
0
 public override void setAboutInformation()
 {
     // Insert proper information here
     appAboutInfo                = new aceApplicationInfo(); // parametarless constructor takes values from Assembly attributes
     appAboutInfo.license        = "Licensed under GNU General Public License v3.0";
     appAboutInfo.welcomeMessage = "imbACE Console Tool";
 }
Example #2
0
 public override void setAboutInformation()
 {
     appAboutInfo = new aceApplicationInfo()
     {
         author             = "Test",
         software           = "testing softvare",
         applicationVersion = "test version",
         organization       = "imb veles",
         welcomeMessage     = "msg"
     };
 }
Example #3
0
 public override void setAboutInformation()
 {
     appAboutInfo = new aceApplicationInfo
     {
         software           = "Terminal Demo",
         copyright          = "Copyright 2017",
         organization       = "imbVeles",
         author             = "Goran Grubić",
         license            = "Licensed under GNU General Public License v3.0",
         applicationVersion = "0.1v",
         welcomeMessage     = "This is demo terminal application."
     };
 }
Example #4
0
 public override void setAboutInformation()
 {
     appAboutInfo = new aceApplicationInfo {
         applicationVersion = "0.1v",
         software           = "imbWEM Tool",
         author             = "Goran Grubić",
         organization       = "Faculty for Organizational Sciences, University of Belgrade",
         copyright          = "Copyright (c) 2017.",
         comment            = "Tool for web crawling, content mining and analysis",
         welcomeMessage     = "",
         license            = "GNU GPL v3.0"
     };
 }