01: package net.sourceforge.squirrel_sql.plugins.hibernate;
02:
03: import net.sourceforge.squirrel_sql.client.session.ISQLEntryPanel;
04:
05: public interface EditExtrasExternalService {
06: void quoteSQL(ISQLEntryPanel entryPanel);
07:
08: void quoteSQLSb(ISQLEntryPanel entryPanel);
09:
10: void unquoteSQL(ISQLEntryPanel entryPanel);
11: }
|