01: package net.sourceforge.squirrel_sql.plugins.editextras;
02:
03: import net.sourceforge.squirrel_sql.client.session.ISQLEntryPanel;
04:
05: public class EditExtrasExternalServiceImpl implements
06: EditExtrasExternalService {
07: public void quoteSQL(ISQLEntryPanel entryPanel) {
08: InQuotesCommand.quoteSQL(entryPanel, false);
09: }
10:
11: public void quoteSQLSb(ISQLEntryPanel entryPanel) {
12: InQuotesCommand.quoteSQL(entryPanel, true);
13: }
14:
15: public void unquoteSQL(ISQLEntryPanel entryPanel) {
16: RemoveQuotesCommand.unquoteSQL(entryPanel);
17: }
18: }
|