/* * Copyright (c) 2000, 2003, Oracle and/or its affiliates. All rights reserved. * ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. * * * * * * * * * * * * * * * * * * * * */ package com.sun.corba.se.impl.encoding; /** * Defines the methods on an input stream which provide * a way to get and restore its internal state without * violating encapsulation. */ interface RestorableInputStream { Object createStreamMemento(); void restoreInternalState(Object streamMemento); }