aboutsummaryrefslogtreecommitdiff
path: root/src/interfaces/jdbc/example/corba
diff options
context:
space:
mode:
Diffstat (limited to 'src/interfaces/jdbc/example/corba')
-rw-r--r--src/interfaces/jdbc/example/corba/StockClient.java4
-rw-r--r--src/interfaces/jdbc/example/corba/StockDB.java4
-rw-r--r--src/interfaces/jdbc/example/corba/StockDispenserImpl.java10
-rw-r--r--src/interfaces/jdbc/example/corba/StockItemImpl.java26
-rw-r--r--src/interfaces/jdbc/example/corba/StockServer.java4
5 files changed, 24 insertions, 24 deletions
diff --git a/src/interfaces/jdbc/example/corba/StockClient.java b/src/interfaces/jdbc/example/corba/StockClient.java
index 0a357b15caf..3ccb28c7fd8 100644
--- a/src/interfaces/jdbc/example/corba/StockClient.java
+++ b/src/interfaces/jdbc/example/corba/StockClient.java
@@ -4,12 +4,12 @@ import java.io.*;
import java.sql.*;
import org.omg.CosNaming.*;
-/**
+/*
* This class is the frontend to our mini CORBA application.
*
* It has no GUI, just a text frontend to keep it simple.
*
- * $Id: StockClient.java,v 1.2 2001/10/25 05:59:58 momjian Exp $
+ * $Id: StockClient.java,v 1.3 2001/11/19 22:43:13 momjian Exp $
*/
public class StockClient
{
diff --git a/src/interfaces/jdbc/example/corba/StockDB.java b/src/interfaces/jdbc/example/corba/StockDB.java
index 88797902ddb..47144983cda 100644
--- a/src/interfaces/jdbc/example/corba/StockDB.java
+++ b/src/interfaces/jdbc/example/corba/StockDB.java
@@ -2,7 +2,7 @@ package example.corba;
import java.sql.*;
-/**
+/*
* This class handles the JDBC side of things. It opens a connection to
* the database, and performes queries on that database.
*
@@ -13,7 +13,7 @@ import java.sql.*;
* that an object could be changed by another client, and we need to ensure that
* the returned data is live and accurate.
*
- * $Id: StockDB.java,v 1.3 2001/10/25 05:59:58 momjian Exp $
+ * $Id: StockDB.java,v 1.4 2001/11/19 22:43:13 momjian Exp $
*/
public class StockDB
{
diff --git a/src/interfaces/jdbc/example/corba/StockDispenserImpl.java b/src/interfaces/jdbc/example/corba/StockDispenserImpl.java
index 9572d20ae7f..54e46181339 100644
--- a/src/interfaces/jdbc/example/corba/StockDispenserImpl.java
+++ b/src/interfaces/jdbc/example/corba/StockDispenserImpl.java
@@ -2,10 +2,10 @@ package example.corba;
import org.omg.CosNaming.*;
-/**
+/*
* This class implements the server side of the example.
*
- * $Id: StockDispenserImpl.java,v 1.2 2001/10/25 05:59:58 momjian Exp $
+ * $Id: StockDispenserImpl.java,v 1.3 2001/11/19 22:43:13 momjian Exp $
*/
public class StockDispenserImpl extends stock._StockDispenserImplBase
{
@@ -39,7 +39,7 @@ public class StockDispenserImpl extends stock._StockDispenserImplBase
}
}
- /**
+ /*
* This method, defined in stock.idl, reserves a slot in the dispenser
*/
public stock.StockItem reserveItem() throws stock.StockException
@@ -56,7 +56,7 @@ public class StockDispenserImpl extends stock._StockDispenserImplBase
return null;
}
- /**
+ /*
* This releases a slot from the dispenser
*/
public void releaseItem(stock.StockItem item) throws stock.StockException
@@ -74,7 +74,7 @@ public class StockDispenserImpl extends stock._StockDispenserImplBase
return ;
}
- /**
+ /*
* This class defines a slot in the dispenser
*/
class StockItemStatus
diff --git a/src/interfaces/jdbc/example/corba/StockItemImpl.java b/src/interfaces/jdbc/example/corba/StockItemImpl.java
index 598ccd2ddcb..f504ab8dfe7 100644
--- a/src/interfaces/jdbc/example/corba/StockItemImpl.java
+++ b/src/interfaces/jdbc/example/corba/StockItemImpl.java
@@ -2,10 +2,10 @@ package example.corba;
import org.omg.CosNaming.*;
-/**
+/*
* This class implements the server side of the example.
*
- * $Id: StockItemImpl.java,v 1.2 2001/10/25 05:59:58 momjian Exp $
+ * $Id: StockItemImpl.java,v 1.3 2001/11/19 22:43:13 momjian Exp $
*/
public class StockItemImpl extends stock._StockItemImplBase
{
@@ -28,7 +28,7 @@ public class StockItemImpl extends stock._StockItemImplBase
}
}
- /**
+ /*
* This is defined in stock.idl
*
* It sets the item to view
@@ -46,7 +46,7 @@ public class StockItemImpl extends stock._StockItemImplBase
}
- /**
+ /*
* This is defined in stock.idl
*
* It sets the item to view
@@ -63,7 +63,7 @@ public class StockItemImpl extends stock._StockItemImplBase
}
}
- /**
+ /*
* This is defined in stock.idl
*
* It returns the description of a Stock item
@@ -80,7 +80,7 @@ public class StockItemImpl extends stock._StockItemImplBase
}
}
- /**
+ /*
* This is defined in stock.idl
*
* It returns the description of a Stock item
@@ -97,7 +97,7 @@ public class StockItemImpl extends stock._StockItemImplBase
}
}
- /**
+ /*
* This is defined in stock.idl
*
* It returns the description of a Stock item
@@ -114,7 +114,7 @@ public class StockItemImpl extends stock._StockItemImplBase
}
}
- /**
+ /*
* This is defined in stock.idl
*
* It returns the description of a Stock item
@@ -131,7 +131,7 @@ public class StockItemImpl extends stock._StockItemImplBase
}
}
- /**
+ /*
* This is defined in stock.idl
*
* It returns the description of a Stock item
@@ -148,7 +148,7 @@ public class StockItemImpl extends stock._StockItemImplBase
}
}
- /**
+ /*
* This is defined in stock.idl
*
* It returns the description of a Stock item
@@ -165,7 +165,7 @@ public class StockItemImpl extends stock._StockItemImplBase
}
}
- /**
+ /*
* This is defined in stock.idl
*
* It returns the description of a Stock item
@@ -182,7 +182,7 @@ public class StockItemImpl extends stock._StockItemImplBase
}
}
- /**
+ /*
* This returns the highest id used, hence the number of items available
*/
public int getLastID() throws stock.StockException
@@ -197,7 +197,7 @@ public class StockItemImpl extends stock._StockItemImplBase
}
}
- /**
+ /*
* This is used by our Dispenser
*/
public String getInstanceName()
diff --git a/src/interfaces/jdbc/example/corba/StockServer.java b/src/interfaces/jdbc/example/corba/StockServer.java
index 43465a944e8..77d8946389b 100644
--- a/src/interfaces/jdbc/example/corba/StockServer.java
+++ b/src/interfaces/jdbc/example/corba/StockServer.java
@@ -2,10 +2,10 @@ package example.corba;
import org.omg.CosNaming.*;
-/**
+/*
* This class implements the server side of the example.
*
- * $Id: StockServer.java,v 1.2 2001/10/25 05:59:58 momjian Exp $
+ * $Id: StockServer.java,v 1.3 2001/11/19 22:43:13 momjian Exp $
*/
public class StockServer
{