/*
 * This program is free software; you can redistribute it and/or
 * modify it under the terms of the GNU General Public License
 * published by the Free Software Foundation; either version 2.1 of
 * the license, or (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *  
 * You should have received a copy of the GNU General Public License
 * along with this program; if not, write to the Free Software
 * Foundation, Inc., 59 Temple Place - Suite
 * 330, Boston, MA  02111-1307, USA.
 * 
 */
package com.k_int.xrtree;

/**
 * Title:		XRNodeRelationship
 * @author:		Rob Tice (rob.tice@k-int.com)
 * @version:	$Id: $
 * Copyright:	Copyright 1999-2006 Knowledge Integration Ltd
 * Company: 	Knowledge Integration Ltd
 * Description:
 * 
 * 
 *
 * Created:		Jun 20, 2006
 * 
 * 
 * History
 *				$Log: $
 * 		
 */

public class XRNodeRelationship
{
    private String source_id;
    private String destination_id;
    private int type;
   
    public void setType(int type)
    {
        this.type=type;
    }
    
    public int getType()
    {
        return type;
    }
    
    public void setSourceId(String id)
    {
        this.source_id=id;
    }
    
    public String getSourceId()
    {
        return source_id;
    }
    
    public void setDestinationId(String id)
    {
        this.destination_id=id;
    }
    
    public String getDestinationId()
    {
        return destination_id;
    }
    
    
   
}
