Forum: Java Aug 26th, 2008 |
| Replies: 9 Views: 1,309 XP Practices:
-Collective ownership
-coding standards
-sustainable pace
-test first
-acceptance tests
-automation
-onsite customer
-continuous integration
-pair programming |
Forum: Java Aug 26th, 2008 |
| Replies: 9 Views: 1,309 http://www.cyberarmy.net/library/article/202 |
Forum: Java Aug 26th, 2008 |
| Replies: 9 Views: 1,309 product owner responsibility: Put into a simple list, typical product owner responsibilities are:
decide on the project vision - who is going to benefit from the project and how;
secure funding;... |
Forum: Java Aug 26th, 2008 |
| Replies: 9 Views: 1,309 so what a about the price |
Forum: Java Aug 26th, 2008 |
| Replies: 9 Views: 1,309 setVat(discount); setDiscount(vat); |
Forum: Java Aug 26th, 2008 |
| Replies: 9 Views: 1,309 package com.bookPortal.model;
public class Book {
private double basePrice = 0;
private int vat = 0;
private int discount = 0;
private double sellPrice;
public Book() {... |
Forum: Java Aug 26th, 2008 |
| Replies: 9 Views: 1,309 public class book {
private double basePrice = 0;
private double vat = 0;
private double discount = 0;
private double sellPrice;
public book() {
setBasePrice(0);
setVat(0);... |
Forum: Java Aug 26th, 2008 |
| Replies: 1 Views: 329 |