01: /*
02: * Copyright (c) 1998 - 2005 Versant Corporation
03: * All rights reserved. This program and the accompanying materials
04: * are made available under the terms of the Eclipse Public License v1.0
05: * which accompanies this distribution, and is available at
06: * http://www.eclipse.org/legal/epl-v10.html
07: *
08: * Contributors:
09: * Versant Corporation - initial API and implementation
10: */
11: package com.versant.core.jdo;
12:
13: import com.versant.core.common.OID;
14:
15: import javax.jdo.spi.PersistenceCapable;
16: import javax.jdo.spi.StateManager;
17:
18: /**
19: * Internal interface for StateManager.
20: */
21: public interface VersantStateManager extends StateManager {
22:
23: void makeDirty(PersistenceCapable persistenceCapable,
24: int managedFieldNo);
25:
26: public void fillNewAppPKField(int fieldNo);
27:
28: public OID getOID();
29:
30: public PersistenceCapable getPersistenceCapable();
31: }
|