* @param v Value to assign to shootingPlace.
*/
public void setShootingPlace(String v) {
checkStringProperty( "Shooting place", v, SHOOTING_PLACE_LENGTH );
ODMGXAWrapper txw = new ODMGXAWrapper();
txw.lock( this, Transaction.WRITE );
this.shootingPlace = v;
modified();
txw.commit();
}
String photographer;