Sign in
android
/
platform
/
tools
/
idea
/
b56ea2a18f232d79481e778085fd64e8ae486fc3
/
.
/
resources-en
/
src
/
intentionDescriptions
/
CopyAbstractMethodImplementationAction
/
before.java.template
blob: 55299b83b09592fe9b41c05b6b782420fd88a07c [
file
] [
log
] [
blame
]
interface
I
{
<spot>
void
m
();</
spot
>
}
class
A
implements
I
{
void
m
()
{
doSomething
();
}
}
class
B
implements
I
{
}