Subversion Repositories SmartDukaan

Rev

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

Rev 51 Rev 207
Line 81... Line 81...
81
	 */
81
	 */
82
	public List<ExpandedBullet> getExpandedBullets() {
82
	public List<ExpandedBullet> getExpandedBullets() {
83
		return expandedBullets;
83
		return expandedBullets;
84
	}
84
	}
85
 
85
 
-
 
86
	/**
-
 
87
	 * 
-
 
88
	 * @return List of String values for each bullet
-
 
89
	 */
-
 
90
	public List<String> getBulletValues() {
-
 
91
		List<String> values = new ArrayList<String>();
-
 
92
		
-
 
93
		if(this.expandedBullets != null) {
-
 
94
			for(ExpandedBullet expBullet : this.expandedBullets) {
-
 
95
				values.add(expBullet.getValue());
-
 
96
			}
-
 
97
		}
-
 
98
		
-
 
99
		return values;
-
 
100
	}
-
 
101
	
86
	/* (non-Javadoc)
102
	/* (non-Javadoc)
87
	 * @see java.lang.Object#toString()
103
	 * @see java.lang.Object#toString()
88
	 */
104
	 */
89
	@Override
105
	@Override
90
	public String toString() {
106
	public String toString() {