KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > ozoneDB > core > DbRemote > DbObjectNames


1 // You can redistribute this software and/or modify it under the terms of
2
// the Ozone Core License version 1 published by ozone-db.org.
3
//
4
// The original code and portions created by SMB are
5
// Copyright (C) 1997-@year@ by SMB GmbH. All rights reserved.
6
//
7
// $Id: DbObjectNames.java,v 1.1 2003/01/29 07:59:45 per_nyfelt Exp $
8

9 package org.ozoneDB.core.DbRemote;
10
11 import org.ozoneDB.OzoneProxy;
12 import org.ozoneDB.DxLib.DxSet;
13 import org.ozoneDB.util.LogWriter;
14 import org.ozoneDB.core.Transaction;
15
16
17 /**
18  * @author Per Nyfelt
19  * @version $Revision: 1.1 $Date: 2003/01/29 07:59:45 $
20  */

21 public class DbObjectNames extends DbCommand {
22
23     public DbObjectNames() {
24     }
25
26     public void perform( Transaction ta ) throws Exception JavaDoc {
27         env.logWriter.newEntry (this, "DbObjectNames.perform()...", LogWriter.DEBUG);
28         DxSet names = ta.objectNames();
29
30         result = names;
31     }
32
33 }
34
Popular Tags