| TestValue.java |
/*
* JBoss, the OpenSource J2EE webOS
*
* Distributable under LGPL license.
* See terms of license at gnu.org.
*/
package org.jboss.iiop.test;
import java.io.Serializable;
public class TestValue
extends TestValueBase
{
static public final String constStr = "test constant";
public boolean b;
String valueStr;
}
| TestValue.java |