Subversion Repositories SmartDukaan

Rev

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

Rev 70 Rev 73
Line 38... Line 38...
38
	 * Expanded version of EnumDataObject
38
	 * Expanded version of EnumDataObject
39
	 */
39
	 */
40
	private ExpandedEnumDataObject expandedEnumDataObject;
40
	private ExpandedEnumDataObject expandedEnumDataObject;
41
	
41
	
42
	/**
42
	/**
43
	 * If bullet contains shop2020 primitive structured data
43
	 * True, if bullet contains shop2020 primitive structured data
44
	 */
44
	 */
45
	private boolean primitive;
45
	private boolean primitive;
46
	
46
	
47
	/**
47
	/**
48
	 * If bullet contains enumerated type structured data
48
	 * True, if bullet contains enumerated type structured data
49
	 */
49
	 */
50
	private boolean enumerated;
50
	private boolean enumerated;
51
	
51
	
52
	/**
52
	/**
53
	 * If bullet contains composite type structured data
53
	 * True, if bullet contains composite type structured data
54
	 */
54
	 */
55
	private boolean composite;
55
	private boolean composite;
56
 
56
 
57
	/**
57
	/**
58
	 * Expands references in Bullet object based on BulletDefinition object
58
	 * Expands references in Bullet object based on BulletDefinition object
Line 108... Line 108...
108
	public ExpandedBulletDefinition getExpandedBulletDefinition() {
108
	public ExpandedBulletDefinition getExpandedBulletDefinition() {
109
		return expandedBulletDefinition;
109
		return expandedBulletDefinition;
110
	}
110
	}
111
 
111
 
112
	/**
112
	/**
-
 
113
	 * True, if bullet contains shop2020 primitive structured data
-
 
114
	 * 
113
	 * @return the primitive
115
	 * @return the primitive
114
	 */
116
	 */
115
	public boolean isPrimitive() {
117
	public boolean isPrimitive() {
116
		return primitive;
118
		return primitive;
117
	}
119
	}
118
 
120
 
119
	/**
121
	/**
-
 
122
	 * True, if bullet contains enumerated type structured data
-
 
123
	 * 
120
	 * @return the enumerated
124
	 * @return the enumerated
121
	 */
125
	 */
122
	public boolean isEnumerated() {
126
	public boolean isEnumerated() {
123
		return enumerated;
127
		return enumerated;
124
	}
128
	}
125
 
129
 
126
	/**
130
	/**
-
 
131
	 * True, if bullet contains composite type structured data
-
 
132
	 * 
127
	 * @return the composite
133
	 * @return the composite
128
	 */
134
	 */
129
	public boolean isComposite() {
135
	public boolean isComposite() {
130
		return composite;
136
		return composite;
131
	}
137
	}