Sign in
apache
/
tapestry-5
/
5.4-beta-35
/
.
/
plastic
/
src
/
test
/
java
/
testsubjects
/
BaseClass.java
blob: 0c32167f61b920c467c90ccb9959d65b2af3ae47 [
file
] [
log
] [
blame
]
package
testsubjects
;
public
class
BaseClass
{
public
void
voidMethod
()
{
}
public
int
primitiveMethod
(
int
input
)
{
return
input
;
}
public
String
objectMethod
(
String
input
)
{
return
input
;
}
}