Subversion Repositories SmartDukaan

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
20424 kshitij.so 1
package com.hotspotstore.model;
2
 
3
public class Specification {
4
 
5
	private String name;
6
	private String[] values;
7
 
8
 
9
	public String[] getValues() {
10
		return values;
11
	}
12
	public void setValues(String[] values) {
13
		this.values = values;
14
	}
15
	public Specification(String name, String[] values) {
16
		super();
17
		this.name = name;
18
		this.values = values;
19
	}
20
	/**
21
	 * @param name the name to set
22
	 */
23
	public void setName(String name) {
24
		this.name = name;
25
	}
26
	/**
27
	 * @return the name
28
	 */
29
	public String getName() {
30
		return name;
31
	}
32
	/**
33
	 * @param value the value to set
34
	 */
35
 
36
}