Subversion Repositories SmartDukaan

Rev

Blame | Last modification | View Log | RSS feed

package com.hotspotstore.model;

import java.util.List;

public class SpecificationGroup {
        public SpecificationGroup(String title, List<Specification> specs) {
                super();
                this.title = title;
                this.specs = specs;
        }
        
        private String title;
        private List<Specification> specs;
        public void setTitle(String title) {
                this.title = title;
        }
        public String getTitle() {
                return title;
        }
        public void setSpecs(List<Specification> specs) {
                this.specs = specs;
        }
        public List<Specification> getSpecs() {
                return specs;
        }
        
}