Package com.gammastream.validity

Examples of com.gammastream.validity.GSVAttribute


        GSVEntity entity = model.entityNamed(entityName);
        if(entity==null){
            entity = new GSVEntity(model, entityName);
            model.addEntity(entity);
        }
        GSVAttribute att = entity.attributeNamed(this.selectedAttribute().name());
        if(att==null){
            att = new  GSVAttribute(entity, this.selectedAttribute().name());
            entity.addAttribute(att);
        }
        att.removeRule(currentRule);
        model.saveModel();

        showAttribute = true;
        showEntity = false;
        showInspector = false;
View Full Code Here


        GSVEntity entity = model.entityNamed(entityName);
        if(entity==null){
            entity = new GSVEntity(model, entityName);
            model.addEntity(entity);
        }
        GSVAttribute att = entity.attributeNamed(this.selectedAttribute().name());
        if(att==null){
            att = new  GSVAttribute(entity, this.selectedAttribute().name());
            entity.addAttribute(att);
        }
        att.removeRule(this.selectedRule());
        model.saveModel();

        showAttribute = true;
        showEntity = false;
        showInspector = false;
View Full Code Here

            if(entity==null){
                entity = new GSVEntity(model, entityName);
                model.addEntity(entity);
            }
            entity.setModel(model);
            GSVAttribute att = entity.attributeNamed(this.selectedAttribute().name());
            if(att==null){
                att = new  GSVAttribute(entity, this.selectedAttribute().name());
                entity.addAttribute(att);
            }
            att.setEntity(entity);
            if(newFlag){
                if(att.ruleNamed(selectedRule().ruleName())!=null){
                    errorMessage = "There is already a rule named: "+ selectedRule().ruleName();
                    error=true;
                    return null;
                }
            }else{
                NSMutableArray temp = new NSMutableArray(att.rules());
                if(temp.count()!=0)
                    temp.removeObject(selectedRule());
                GSVRule ru=null;
                for(int s=0;s<temp.count();s++){
                    ru = (GSVRule)temp.objectAtIndex(s);
                    if(ru.ruleName().equals(selectedRule().ruleName())){
                        errorMessage = "There is already a rule named: "+ selectedRule().ruleName();
                        error=true;
                        return null;
                    }
                }
            }
            if(!this.convertRuleKeyValueToDictionary()){
                errorMessage = "All Keys in the Parameter NSDictionary can not contain spaces.<BR>Keys and Values can not be blank.";
                error=true;
                return null;
            }
            if(checked){
                app.config().addRule(selectedRule());
            }else{
                app.config().removeRule(selectedRule());
            }
            if(newFlag)
                att.addRule(this.selectedRule());
            model.saveModel();
            app.saveConfiguration();
            showAttribute = true;
            showEntity = false;
            showInspector = false;
View Full Code Here

    //returns list of Rules for attribute
    public NSArray rules() {
        try{
            GSVEntity entity = session.model().entityNamed(this.selectedAttribute().entity().name());
            GSVAttribute att = entity.attributeNamed(this.selectedAttribute().name());
            return att.rules();
        }catch(Exception e){
            return null;
        }
    }
View Full Code Here

        GSVModel model = session.model();
        GSVEntity entity = model.entityNamed(entityName);
        if(entity==null){
            return 0;
        }
        GSVAttribute att = entity.attributeNamed(this.currentAttribute.name());
        if(att==null){
            return 0;
        }
        return att.rules().count();
    }
View Full Code Here

TOP

Related Classes of com.gammastream.validity.GSVAttribute

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.