01: // You can redistribute this software and/or modify it under the terms of
02: // the Ozone Core License version 1 published by ozone-db.org.
03: //
04: // The original code and portions created by SMB are
05: // Copyright (C) 1997-@year@ by SMB GmbH. All rights reserved.
06: //
07: // $Id: NameTableChange.java,v 1.1 2001/12/18 10:31:31 per_nyfelt Exp $
08:
09: package org.ozoneDB.core.wizardStore;
10:
11: import org.ozoneDB.core.*;
12: import org.ozoneDB.util.*;
13: import org.ozoneDB.DxLib.*;
14:
15: /**
16: * @author <a href="http://www.softwarebuero.de/">SMB</a>
17: * @version $Revision: 1.1 $Date: 2001/12/18 10:31:31 $
18: */
19: final class NameTableChange {
20:
21: public final static int STATE_ADDED = 1;
22: public final static int STATE_REMOVED = 2;
23:
24: public ObjectID oid;
25:
26: public String name;
27:
28: public int state;
29:
30: public NameTableChange(ObjectID _oid, String _name, int _state) {
31: oid = _oid;
32: name = _name;
33: state = _state;
34: }
35:
36: }
|