Subversion Repositories SmartDukaan

Rev

Blame | Last modification | View Log | RSS feed

package com.hotspotstore.model;

public class Specification {
        
        private String name;
        private String[] values;
        
        
        public String[] getValues() {
                return values;
        }
        public void setValues(String[] values) {
                this.values = values;
        }
        public Specification(String name, String[] values) {
                super();
                this.name = name;
                this.values = values;
        }
        /**
         * @param name the name to set
         */
        public void setName(String name) {
                this.name = name;
        }
        /**
         * @return the name
         */
        public String getName() {
                return name;
        }
        /**
         * @param value the value to set
         */
        
}