-
Notifications
You must be signed in to change notification settings - Fork 34
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Inner Class #88
Comments
The unit test https://github.com/phax/jcodemodel/blob/master/src/test/java/com/helger/jcodemodel/InnerClassFuncTest.java is your friend here. package org.test;
public class DaTestClass {
public DaTestClass.Inner getInner() {
}
public DaTestClass.Inner.InnerInner getInnerInner() {
}
public DaTestClassInner getInner2() {
}
public DaTestClassInner.Inner2 getInner2Inner() {
}
public class DaTestClassInner {
public class Inner2 {
}
}
public class Inner {
public class InnerInner {
}
}
} and package org.test;
import org.test.DaTestClass.DaTestClassInner;
public class OtherClass {
public DaTestClass.Inner getInner() {
}
public DaTestClass.Inner.InnerInner getInnerInner() {
}
public DaTestClassInner.Inner2 getInner2Inner() {
}
public DaTestClass getOuter() {
}
} Happy coding |
Is there a FAQ ? Or a example project to let people have a glance at those use cases ? Many cases I was wondering how to do some specific thing, like create an enum with abstract method, etc. |
No, there is no Wiki yet. |
@glelouet I started at https://github.com/phax/jcodemodel/wiki/How-Tos - I hope this approximately what you were looking for |
you rock :) |
can you make a second project, phax/jcodemodel-examples ? Should be a pom. |
Well it has pros and cons - when linking to the examples, than it means, that the code is not visible on a single page - than you need to jump back and forth. |
your choice, just a suggestion. |
Hi @phax
Could you help me with another issue?
How to create an Inner class with my scenario, follow (?):
Thank you so much,
The text was updated successfully, but these errors were encountered: