~ubuntu-branches/ubuntu/oneiric/postgresql-pljava/oneiric-201109061811

« back to all changes in this revision

Viewing changes to src/java/pljava/org/postgresql/pljava/TriggerData.java

  • Committer: Bazaar Package Importer
  • Author(s): Peter Eisentraut
  • Date: 2006-06-26 10:44:55 UTC
  • mfrom: (1.1.1 upstream) (3.1.1 edgy)
  • Revision ID: james.westby@ubuntu.com-20060626104455-135i9wosat2k8vvt
Tags: 1.3.0-1
* New upstream release (closes: #375199)
* Built for postgresql 8.1 (closes: #339641)
* Rebuilt for new libgcj library (closes: #369986)
* Updated copyright file
* Updated standards version
* Made use of cdbs simple patchsys

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
/*
2
 
 * Copyright (c) 2004, 2005 TADA AB - Taby Sweden
 
2
 * Copyright (c) 2004, 2005, 2006 TADA AB - Taby Sweden
3
3
 * Distributed under the terms shown in the file COPYRIGHT
4
4
 * found in the root folder of this project or at
5
5
 * http://eng.tada.se/osprojects/COPYRIGHT.html
77
77
        String getTableName() throws SQLException;
78
78
 
79
79
        /**
 
80
         * Returns the name of the schema of the table for which this trigger was created (as
 
81
         * declared in the <code>CREATE TRIGGER</code statement).
 
82
         * 
 
83
         * @throws SQLException
 
84
         *             if the contained native buffer has gone stale.
 
85
         */
 
86
        String getSchemaName() throws SQLException;
 
87
 
 
88
        /**
80
89
         * Returns <code>true</code> if the trigger was fired after the statement
81
90
         * or row action that it is associated with.
82
91
         *