Sign in
apache
/
tapestry-5
/
5.4-beta-35
/
.
/
plastic
/
src
/
test
/
java
/
testsubjects
/
ProtectedFieldSubclass.java
blob: 19c506396cda073efb7590dafd4aba9b39dff64b [
file
] [
log
] [
blame
]
package
testsubjects
;
public
class
ProtectedFieldSubclass
extends
ProtectedField
{
public
String
getValue
()
{
return
protectedValue
;
}
public
void
setValue
(
String
value
)
{
protectedValue
=
value
;
}
}