package org.trifort.rootbeer.testcases.rootbeertest.serialization; public class PolymorphicClassBase { private int m_value1; public PolymorphicClassBase(){ m_value1 = 1; } }