Пример #1
0
 public JEVisUserWS(JEVisDataSourceWS ds, JEVisObjectWS obj)
 {
     this.ds  = ds;
     this.obj = obj;
     this.urm = new UserRightManager(ds, this);
     FetchData();
 }
Пример #2
0
        public JEVisAttributeWS(JEVisDataSourceWS ds, JsonAttribute json)
        {
            this.ds   = ds;
            this.json = json;

            Optimization.getInstance().addAttribute(this);
        }
Пример #3
0
 public JEVisTypeWS(JEVisDataSourceWS ds, String name, String jclass)
 {
     this.json = new JsonAttributeType();
     this.json.SetName(name);
     this.jclass = jclass;
     this.ds     = ds;
 }
Пример #4
0
 public JEVisSampleWS(JEVisDataSourceWS ds, JsonSample json, JEVisAttribute att)
 {
     this.attribute = att;
     this.ds        = ds;
     this.json      = json;
     ObjectifyValue();
     ObjectifyTimeStamp();
 }
Пример #5
0
        public JEVisAttributeWS(JEVisDataSourceWS ds, JsonAttribute json, Long obj)
        {
            this.ds   = ds;
            this.json = json;
            this.json.setObjectID(obj);

            Optimization.getInstance().addAttribute(this);
        }
        public JEVisRelationshipWS(JEVisDataSourceWS ds, JsonRelationship json)
        {
            //        logger.trace("New Relationship: {}->{}", json.getFrom(), json.getTo());
            this.ds   = ds;
            this.json = json;

            type = json.GetType();
        }
Пример #7
0
 public JEVisSampleWS(JEVisDataSourceWS ds, JsonSample json, JEVisAttribute att, JEVisFile file)
 {
     this.attribute = att;
     this.ds        = ds;
     this.json      = json;
     this.file      = file;
     try
     {
         SetValue(file.getFilename());
     }
     catch (Exception ex)
     {
         logger.Error(ex);
     }
 }
Пример #8
0
 public JEVisObjectWS(JEVisDataSourceWS ds, JsonObject json)
 {
     this.ds   = ds;
     this.json = json;
 }
Пример #9
0
 public JEVisTypeWS(JEVisDataSourceWS ds, JsonAttributeType json, String jclass)
 {
     this.jclass = jclass;
     this.ds     = ds;
     this.json   = json;
 }
 public JEVisClassRelationshipWS(JEVisDataSourceWS ds, JsonClassRelationship json)
 {
     this.ds   = ds;
     this.json = json;
 }
Пример #11
0
 public JEVisClassWS(JEVisDataSourceWS ds, JsonJEVisClass json)
 {
     this.ds = ds;
     this.json = json;
 }