View Javadoc

1   package edu.iris.Fissures.model;
2   
3   
4   /***
5    * GlobalAreaValueFactory.java
6    *
7    *
8    * Created: Thu Dec  6 20:12:13 2001
9    *
10   * @author <a href="mailto:">Philip Crotwell</a>
11   * @version
12   */
13  
14  public class GlobalAreaValueFactory  implements org.omg.CORBA.portable.ValueFactory{
15  
16      public java.io.Serializable read_value (org.omg.CORBA_2_3.portable.InputStream is) {
17  	java.io.Serializable val = 
18  	    GlobalAreaImpl.createEmpty();
19  	// create and initialize value
20  	return is.read_value(val);
21      }
22  
23  }// GlobalAreaValueFactory