Subversion Repositories SmartDukaan

Rev

Rev 31065 | Rev 31773 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 31065 Rev 31767
Line 276... Line 276...
276
 
276
 
277
	public void setStatus(status status) {
277
	public void setStatus(status status) {
278
		this.status = status;
278
		this.status = status;
279
	}
279
	}
280
 
280
 
-
 
281
	public boolean isAnyColor() {
-
 
282
		if(this.color != null) {
-
 
283
			String lowerCaseColor = this.color.toLowerCase();
-
 
284
			return lowerCaseColor.equals("any color") || lowerCaseColor.equals("f_any color");
-
 
285
		}
-
 
286
		return false;
-
 
287
	}
-
 
288
 
281
}
289
}
282
290