RooTicket.vala
[gitlive] / RooProject.vala
index 448bd9a..b46ee7d 100644 (file)
@@ -1,8 +1,22 @@
+/**
+This a mostly a static class that manages an array of it'self...
 
+*/
 
 static RooProject  _RooProject;
 public class RooProject  : Object 
 {
+       
+       public string  id; // not really important that they are numbers..
+       public string code;
+       public string name;
+       public string type;
+
+       
+       // --- static from here on....
+       
+       
+       
        static Gee.ArrayList<RooProject> _projects;
        static int loadcount = 0;
        const string roourl = "https://roojs.com/admin.php/Roo";  
@@ -19,11 +33,6 @@ public class RooProject  : Object
         return _RooProject;
     }
        
-       public string  id; // not really important that they are numbers..
-       public string code;
-       public string name;
-       public string type;
-
        
        public static Gee.ArrayList<RooProject> projects()
        {