jas.graph
Interface IRelationalAgent

All Known Implementing Classes:
RelationalAgent

public interface IRelationalAgent

The interface of an object which represents an agent able to keep relations with other agents. The IRelationalAgent objects are represented as vertexes of a graph.

Title: JAS

Description: Java Agent-based Simulation library

Copyright (C) 2002 Michele Sonnessa

This library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation; either version 2.1 of the License, or (at your option) any later version. This library 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 Lesser General Public License for more details. You should have received a copy of the GNU Lesser General Public License along with this library; if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA.

Author:
Riccardo Boero, Michele Sonnessa

Field Summary
static int SHAPE_CIRCLE
           
static int SHAPE_RECTANGLE
           
static int SHAPE_TRIANGLE
           
 
Method Summary
 org._3pq.jgrapht.Edge addRelation(IRelationalAgent a, double weight)
           
 java.util.Map getAttributes()
           
 java.awt.Color getColor()
           
 org._3pq.jgrapht.Graph getGraph()
           
 int getId()
           
 java.util.Set getIncidentEdges()
           
 java.util.Set getIncidentInEdges()
           
 java.util.Set getIncidentOutEdges()
           
 java.lang.String getLabel()
           
 org._3pq.jgrapht.Edge getRelation(IRelationalAgent a)
           
 int getShape()
           
 int getSize()
           
 int getX()
           
 int getY()
           
 org._3pq.jgrapht.Edge removeRelation(IRelationalAgent a)
           
 void setColor(java.awt.Color color)
           
 void setLabel(java.lang.String l)
           
 void setShape(int shape)
           
 void setSize(int size)
           
 void setXY(int x, int y)
           
 

Field Detail

SHAPE_CIRCLE

static final int SHAPE_CIRCLE
See Also:
Constant Field Values

SHAPE_RECTANGLE

static final int SHAPE_RECTANGLE
See Also:
Constant Field Values

SHAPE_TRIANGLE

static final int SHAPE_TRIANGLE
See Also:
Constant Field Values
Method Detail

addRelation

org._3pq.jgrapht.Edge addRelation(IRelationalAgent a,
                                  double weight)

getAttributes

java.util.Map getAttributes()

getColor

java.awt.Color getColor()

getGraph

org._3pq.jgrapht.Graph getGraph()

getId

int getId()

getIncidentEdges

java.util.Set getIncidentEdges()

getIncidentInEdges

java.util.Set getIncidentInEdges()

getIncidentOutEdges

java.util.Set getIncidentOutEdges()

getLabel

java.lang.String getLabel()

getRelation

org._3pq.jgrapht.Edge getRelation(IRelationalAgent a)

getShape

int getShape()

getSize

int getSize()

getX

int getX()

getY

int getY()

removeRelation

org._3pq.jgrapht.Edge removeRelation(IRelationalAgent a)

setColor

void setColor(java.awt.Color color)

setLabel

void setLabel(java.lang.String l)

setShape

void setShape(int shape)

setSize

void setSize(int size)

setXY

void setXY(int x,
           int y)