Skip to content

Commit 689a9b5

Browse files
Ruediger.LundeRuediger.Lunde
authored andcommitted
javadoc documentation improved.
1 parent dfb949a commit 689a9b5

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

src/aima/gui/applications/search/map/MapAgentFrame.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
* Universal frame for experiments with route planning
1616
* agents. It configures the agent application frame with some selectors
1717
* and an agent view which is designed for cooperation with an
18-
* {@link AbstractMapAgentModel}. Since items for scenario, agent, destination,
18+
* {@link MapAgentModel}. Since items for scenario, agent, destination,
1919
* agent, and heuristic selection are application specific, this general
2020
* implementation provides items only for search strategy and mode selection.
2121
* @author R. Lunde
@@ -52,9 +52,9 @@ public MapAgentFrame() {
5252
// inner classes
5353

5454
/**
55-
* Agent view for map and tour agent applications. This
55+
* Agent view for map agent applications. This
5656
* view requires the used model to be of type
57-
* {@link AbstractMapAgentModel}.
57+
* {@link MapAgentModel}.
5858
*/
5959
class MapAgentView extends AgentView {
6060

src/aima/gui/applications/search/map/MapAgentModel.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ public void clearTourHistory() {
4242
* Reacts on environment changes and updates the tour history. The command
4343
* string is always send to all registered model change listeners. If the
4444
* command is a location name (with attached position info) or
45-
* {@link aima.basic.Agent#NO_OP} or {@link aima.basic.Agent#DONE}, the
45+
* {@link aima.basic.Agent#NO_OP}, the
4646
* agent's current location is added to the tour history and all listeners
4747
* are informed about the change.
4848
*/

src/aima/search/map/Point2D.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
package aima.search.map;
22

33
/**
4-
* Simplified version of {@link java.awt.geom.Point}. We do not
4+
* Simplified version of <code>java.awt.geom.Point2D</code>. We do not
55
* want dependencies to presentation layer packages here.
66
* @author R. Lunde
77
*/

0 commit comments

Comments
 (0)