Subversion Repositories SmartDukaan

Rev

Rev 9218 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 9218 Rev 11762
Line 1... Line 1...
1
package in.shop2020.metamodel.util;
1
package in.shop2020.metamodel.util;
2
 
2
 
3
import java.util.List;
3
import java.util.List;
4
 
4
 
5
public class SpecificationGroup {
5
public class SpecificationGroup {
-
 
6
	@Override
-
 
7
	public String toString() {
-
 
8
		return "SpecificationGroup [title=" + title + ", specs=" + specs + "]";
-
 
9
	}
6
	public SpecificationGroup(String title, List<Specification> specs) {
10
	public SpecificationGroup(String title, List<Specification> specs) {
7
		super();
11
		super();
8
		this.title = title;
12
		this.title = title;
9
		this.specs = specs;
13
		this.specs = specs;
10
	}
14
	}