/*****************************************************************/ /* Copyright 2013 Code Strategies */ /* This code may be freely used and distributed in any project. */ /* However, please do not remove this credit if you publish this */ /* code in paper or electronic form, such as on a web site. */ /*****************************************************************/ package test; public class FieldTest extends ParentFieldTest { private String pri; protected String pro; public String pub; public FieldTest() { } public FieldTest(String pri, String pro, String pub) { this.pri = pri; this.pro = pro; this.pub = pub; } }