Package net.sf.archimede.model.group

Examples of net.sf.archimede.model.group.GroupImpl


        this.newDescription = newDescription1;
    }
   
    public String newGroup() {
        if (this.newName != null && !this.newName.trim().equals("")) {
            Group group = new GroupImpl();
            group.setName(this.newName);
            group.setDescription(this.newDescription);
           
            CollectionBean collectionBean = (CollectionBean) FacesContext.getCurrentInstance().getApplication().createValueBinding(CollectionBean.BEAN_REF).getValue(FacesContext.getCurrentInstance());    
            Collection parentCollection = collectionBean.getSelectedCollection();
           
            group.setParent(parentCollection);
           
            GroupDao.createInstance().save(group);
           
            this.newName = null;
            this.newDescription = null;
View Full Code Here

TOP

Related Classes of net.sf.archimede.model.group.GroupImpl

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.