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
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
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)