KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > sun > corba > se > impl > corba > TypeCodeFactory


1 /*
2  * @(#)TypeCodeFactory.java 1.14 03/12/19
3  *
4  * Copyright 2004 Sun Microsystems, Inc. All rights reserved.
5  * SUN PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.
6  */

7
8 package com.sun.corba.se.impl.corba;
9
10 public interface TypeCodeFactory {
11     void setTypeCode(String JavaDoc id, TypeCodeImpl code);
12
13     TypeCodeImpl getTypeCode(String JavaDoc id);
14
15     void setTypeCodeForClass( Class JavaDoc c, TypeCodeImpl tcimpl ) ;
16
17     TypeCodeImpl getTypeCodeForClass( Class JavaDoc c ) ;
18 }
19
Popular Tags