From 04c4b11f404dbee36b3a427010d600b88e83bc24 Mon Sep 17 00:00:00 2001 From: mdb Date: Tue, 4 Dec 2001 07:42:32 +0000 Subject: [PATCH] Javadoc fix. git-svn-id: https://samskivert.googlecode.com/svn/trunk@506 6335cc39-0255-0410-8fd6-9bcaacd3b74c --- .../src/java/com/samskivert/jdbc/jora/Table.java | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/projects/samskivert/src/java/com/samskivert/jdbc/jora/Table.java b/projects/samskivert/src/java/com/samskivert/jdbc/jora/Table.java index c325eccc..1998d705 100644 --- a/projects/samskivert/src/java/com/samskivert/jdbc/jora/Table.java +++ b/projects/samskivert/src/java/com/samskivert/jdbc/jora/Table.java @@ -27,7 +27,7 @@ public class Table { * @param tableName name of database table mapped on this Java class * @param key table's primary key. This parameter is used in UPDATE/DELETE * operations to locate record in the table. - * @s session, which should be opened before first access to the table + * @param s session, which should be opened before first access to the table */ public Table(String className, String tableName, Session s, String key) { String[] keys = {key}; @@ -41,7 +41,7 @@ public class Table { * @param tableName name of database table mapped on this Java class * @param keys table primary keys. This parameter is used in UPDATE/DELETE * operations to locate record in the table. - * @s session, which should be opened before first access to the table + * @param s session, which should be opened before first access to the table */ public Table(String className, String tableName, Session s, String[] keys) { @@ -56,7 +56,7 @@ public class Table { * package prefix) be the same as the name of database table. * @param keys table primary keys. This parameter is used in UPDATE/DELETE * operations to locate record in the table. - * @s session, which should be opened before first access to the table + * @param s session, which should be opened before first access to the table */ public Table(String className, Session s, String[] keys) { init(className, className.substring(className.lastIndexOf('.')+1), @@ -71,7 +71,7 @@ public class Table { * package prefix) be the same as the name of database table. * @param key table primary key. This parameter is used in UPDATE/DELETE * operations to locate record in the table. - * @s session, which should be opened before first access to the table + * @param s session, which should be opened before first access to the table */ public Table(String className, Session s, String key) { String[] keys = {key};