001 package org.omg.PortableInterceptor;
002
003
004 /**
005 * Generated from IDL interface "Current".
006 *
007 * @author JacORB IDL compiler V 2.3.0 (JBoss patch 6), 06-Jun-2007
008 * @version generated at Nov 6, 2011 12:20:31 AM
009 */
010
011 public class CurrentLocalTie
012 extends _CurrentLocalBase
013 {
014 private CurrentOperations _delegate;
015
016 public CurrentLocalTie(CurrentOperations delegate)
017 {
018 _delegate = delegate;
019 }
020 public CurrentOperations _delegate()
021 {
022 return _delegate;
023 }
024 public void _delegate(CurrentOperations delegate)
025 {
026 _delegate = delegate;
027 }
028 public org.omg.CORBA.Any get_slot(int id) throws org.omg.PortableInterceptor.InvalidSlot
029 {
030 return _delegate.get_slot(id);
031 }
032
033 public void set_slot(int id, org.omg.CORBA.Any data) throws org.omg.PortableInterceptor.InvalidSlot
034 {
035 _delegate.set_slot(id,data);
036 }
037
038 }