summaryrefslogtreecommitdiff
path: root/resources-en/src/intentionDescriptions/CreateSubclassAction
diff options
context:
space:
mode:
authorJean-Baptiste Queru <jbq@google.com>2013-01-08 11:11:20 -0800
committerJean-Baptiste Queru <jbq@google.com>2013-01-08 11:11:20 -0800
commitb56ea2a18f232d79481e778085fd64e8ae486fc3 (patch)
tree44e1f6eb4864a45033f865b74fe783e3d784dd6a /resources-en/src/intentionDescriptions/CreateSubclassAction
downloadidea-b56ea2a18f232d79481e778085fd64e8ae486fc3.tar.gz
Snapshot of commit d5ec1d5018ed24f1b4f32b1d09df6dbd7e2fc425
from branch master of git://git.jetbrains.org/idea/community.git
Diffstat (limited to 'resources-en/src/intentionDescriptions/CreateSubclassAction')
-rw-r--r--resources-en/src/intentionDescriptions/CreateSubclassAction/after.java.template8
-rw-r--r--resources-en/src/intentionDescriptions/CreateSubclassAction/before.java.template3
-rw-r--r--resources-en/src/intentionDescriptions/CreateSubclassAction/description.html6
3 files changed, 17 insertions, 0 deletions
diff --git a/resources-en/src/intentionDescriptions/CreateSubclassAction/after.java.template b/resources-en/src/intentionDescriptions/CreateSubclassAction/after.java.template
new file mode 100644
index 000000000000..8bac27269e55
--- /dev/null
+++ b/resources-en/src/intentionDescriptions/CreateSubclassAction/after.java.template
@@ -0,0 +1,8 @@
+public abstract class X {
+ protected abstract void f();
+}
+public class XImpl extends X {
+ protected void f() {
+ //To change body of implemented methods use File | Settings | File Templates.
+ }
+}
diff --git a/resources-en/src/intentionDescriptions/CreateSubclassAction/before.java.template b/resources-en/src/intentionDescriptions/CreateSubclassAction/before.java.template
new file mode 100644
index 000000000000..05c1b37ff417
--- /dev/null
+++ b/resources-en/src/intentionDescriptions/CreateSubclassAction/before.java.template
@@ -0,0 +1,3 @@
+<spot>public abstract class X</spot> {
+ protected abstract void f();
+}
diff --git a/resources-en/src/intentionDescriptions/CreateSubclassAction/description.html b/resources-en/src/intentionDescriptions/CreateSubclassAction/description.html
new file mode 100644
index 000000000000..e6850bbf32ba
--- /dev/null
+++ b/resources-en/src/intentionDescriptions/CreateSubclassAction/description.html
@@ -0,0 +1,6 @@
+<html>
+<body>
+This intention creates a subclass or implementation class for the selected class or interface. <br>
+The generated class contains default implementation for all abstract methods in the base class or interface.
+</body>
+</html>