blob: 636c963a79ac75e2e5ce2009756347459c7103ff [file] [log] [blame]
<?php
/*******************************************************************************
* Copyright (c) 2007 Eclipse Foundation and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* Nathan Gervais (Eclipse Foundation)- initial API and implementation
*******************************************************************************/
require_once(realpath(dirname(__FILE__) . "/../../system/smartconnection.class.php"));
require_once("contribution.class.php");
require_once("friend.class.php");
class FriendsContributions {
private $friend_id;
private $contribution_id;
private $friendObject;
private $contributionObject;
# default constructor
function FriendsContributions($testmode = FALSE) {
$this->friend_id = "";
$this->contribution_id = "";
$this->friendObject = new Friend($testmode);
$this->contribitionObject = new Contribution($testmode);
}
function getFriendID() {
return $this->friend_id;
}
function getContribution() {
return $this->contribution_id;
}
function getFriendObject() {
return $this->friendObject;
}
function getContributionObject() {
return $this->contributionObject;
}
function setFriendID($_friend_id){
$this->friend_id = $_friend_id;
}
function setContributionID($_contribution_id) {
$this->contribution_id = $_contribution_id;
}
function setFriendObject($_friendObject) {
$this->friendObject = $_friendObject;
}
function setContributionObject($_contributionObject){
$this->contributionObject = $_contributionObject;
}
}