summaryrefslogtreecommitdiff
path: root/src/interfaces/jdbc/org/postgresql/PGNotification.java
diff options
context:
space:
mode:
authorBruce Momjian <bruce@momjian.us>2002-09-06 21:23:06 +0000
committerBruce Momjian <bruce@momjian.us>2002-09-06 21:23:06 +0000
commitf37c1c486a383a3d266598463e13958359dbcce9 (patch)
tree6ad11ea2a33bae8b485c084434cbde9fc35f374f /src/interfaces/jdbc/org/postgresql/PGNotification.java
parentb4295d052e81a246bd7b15f6bc4ad37bd7ab4e86 (diff)
downloadpostgresql-f37c1c486a383a3d266598463e13958359dbcce9.tar.gz
Run pgjindent for Java folks.
Diffstat (limited to 'src/interfaces/jdbc/org/postgresql/PGNotification.java')
-rw-r--r--src/interfaces/jdbc/org/postgresql/PGNotification.java18
1 files changed, 9 insertions, 9 deletions
diff --git a/src/interfaces/jdbc/org/postgresql/PGNotification.java b/src/interfaces/jdbc/org/postgresql/PGNotification.java
index 0413e9b350..dbcd6fbe6a 100644
--- a/src/interfaces/jdbc/org/postgresql/PGNotification.java
+++ b/src/interfaces/jdbc/org/postgresql/PGNotification.java
@@ -1,20 +1,20 @@
package org.postgresql;
-/* $Header: /cvsroot/pgsql/src/interfaces/jdbc/org/postgresql/Attic/PGNotification.java,v 1.1 2002/09/02 03:07:36 barry Exp $
+/* $Header: /cvsroot/pgsql/src/interfaces/jdbc/org/postgresql/Attic/PGNotification.java,v 1.2 2002/09/06 21:23:05 momjian Exp $
* This interface defines PostgreSQL extention for Notifications
*/
public interface PGNotification
{
- /*
- * Returns name of this notification
- */
- public String getName();
+ /*
+ * Returns name of this notification
+ */
+ public String getName();
- /*
- * Returns the process id of the backend process making this notification
- */
- public int getPID();
+ /*
+ * Returns the process id of the backend process making this notification
+ */
+ public int getPID();
}