]> rtime.felk.cvut.cz Git - orte.git/blob - orte/java/src/org/ocera/orte/types/CommonPubSubInfo.java
JORTE: initialize string_pointer variable to make Java compiler happy
[orte.git] / orte / java / src / org / ocera / orte / types / CommonPubSubInfo.java
1 /*
2  * CommonPubSubInfo.java
3  *
4  * Created on 10. kvÄ›ten 2005, 11:15
5  */
6
7 package org.ocera.orte.types;
8
9 /**
10  *
11  * @author luky
12  */
13 public class CommonPubSubInfo {
14     
15     /** Creates a new instance of CommonPubSubInfo */
16     public CommonPubSubInfo() {
17     }
18
19     public String getTopic() {
20         return this.topic;
21     }
22   
23     public String getTypeName() {
24         return this.typeName;
25     }
26     
27     // variables
28     private String topic;
29     private String typeName;          
30 }