KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > versant > core > jdo > VersantStateManager


1
2 /*
3  * Copyright (c) 1998 - 2005 Versant Corporation
4  * All rights reserved. This program and the accompanying materials
5  * are made available under the terms of the Eclipse Public License v1.0
6  * which accompanies this distribution, and is available at
7  * http://www.eclipse.org/legal/epl-v10.html
8  *
9  * Contributors:
10  * Versant Corporation - initial API and implementation
11  */

12 package com.versant.core.jdo;
13
14 import com.versant.core.common.OID;
15
16 import javax.jdo.spi.PersistenceCapable;
17 import javax.jdo.spi.StateManager;
18
19 /**
20  * Internal interface for StateManager.
21  */

22 public interface VersantStateManager extends StateManager {
23
24     void makeDirty(PersistenceCapable persistenceCapable, int managedFieldNo);
25
26     public void fillNewAppPKField(int fieldNo);
27
28     public OID getOID();
29
30     public PersistenceCapable getPersistenceCapable();
31 }
32
Popular Tags