ejb plugin: how add nested complex annotations to java class?
by JFlower
Hi,
I should add a nested (complex) annotation to MDB class, like this:
@MessageDriven(name = "MDBName", activationConfig = {
@ActivationConfigProperty(propertyName = "destinationType", propertyValue
= "javax.jms.Queue"),
@ActivationConfigProperty(propertyName = "destination", propertyValue =
"blah"),
@ActivationConfigProperty(propertyName = "acknowledgeMode", propertyValue
= "Auto-acknowledge"),
@ActivationConfigProperty(propertyName = "maxSession", propertyValue =
"1"),
@ActivationConfigProperty(propertyName = "transactionTimeout",
propertyValue = "10800"),
@ActivationConfigProperty(propertyName = "dLQMaxResent", propertyValue =
"0")
})
i can't find something like this in forge code...
I tried with :
JavaClass ejb =((JavaResource) resource).getJavaSource();
ejb.addAnnotation(EjbType.MESSAGEDRIVEN.getAnnotation())
.setStringValue( "name", resource.getName().substring(0,
resource.getName().lastIndexOf(".")))
*.setStringValue( "activationConfig",*
*
+ "\"{ @ActivationConfigProperty(propertyName = \"destinationType\",
propertyValue = \"" + destinationType + "\") "*
* + "@ActivationConfigProperty(propertyName = \"destination\",
propertyValue = \"" + destinationName + "\")}");*
This code does not generate errors, but doesn't add properties to
@MessageDriven annotation.
Someone can help me?
thanks
Fiorenzo
12 years, 2 months
Meeting minutes - 2012-08-29
by ggastald@redhat.com
==============
#forge Meeting
==============
Meeting started by gastaldi at 14:20:42 UTC. The full logs are available
at
http://transcripts.jboss.org/meeting/irc.freenode.org/forge/2012/forge.20...
.
Meeting summary
---------------
* Agenda (gastaldi, 14:21:10)
* Agenda (gastaldi, 14:21:44)
* Google Analytics support in Forge (gastaldi, 14:22:16)
* Forge Website (gastaldi, 14:26:39)
* Forge talks (gastaldi, 14:27:18)
* Google Analytics support in Forge (FORGE-224) (gastaldi, 14:27:54)
* ACTION: gastaldi will talk with maxandersen about what is the best
way of gathering this info, based on his experience with JBoss Tools
(gastaldi, 14:32:11)
* Forge Website (gastaldi, 14:33:44)
* Forge talks (gastaldi, 14:48:16)
Meeting ended at 15:06:54 UTC.
Action Items
------------
* gastaldi will talk with maxandersen about what is the best way of
gathering this info, based on his experience with JBoss Tools
Action Items, by person
-----------------------
* gastaldi
* gastaldi will talk with maxandersen about what is the best way of
gathering this info, based on his experience with JBoss Tools
* **UNASSIGNED**
* (none)
People Present (lines said)
---------------------------
* gastaldi (73)
* koentsje (31)
* ivannov (12)
* rruss (8)
* jbott (3)
* jbossbot (2)
* jzelenkov (1)
Generated by `MeetBot`_ 0.1.4
.. _`MeetBot`: http://wiki.debian.org/MeetBot
12 years, 2 months
error in forge-shell-api
by JFlower
Hi,
i have this error with mvn clean package
[ERROR] Failed to execute goal
org.apache.maven.plugins:maven-compiler-plugin:2.3.1:compile
(default-compile) on project forge-shell-api: Compilation failure
*[ERROR]
/home/fiorenzo/git/core/shell-api/src/main/java/org/jboss/forge/shell/util/ResourceUtil.java:[111,23]
invalid inferred types for R; inferred type does not conform to declared
bound(s)*
*[ERROR] inferred: java.util.Collection<E>*
*[ERROR] bound(s):
java.util.Collection<org.jboss.forge.resources.Resource<?>>*
*[ERROR] -> [Help 1]*
[ERROR]
[ERROR] To see the full stack trace of the errors, re-run Maven with the -e
switch.
[ERROR] Re-run Maven using the -X switch to enable full debug logging.
[ERROR]
[ERROR] For more information about the errors and possible solutions,
please read the following articles:
[ERROR] [Help 1]
http://cwiki.apache.org/confluence/display/MAVEN/MojoFailureException
[ERROR]
[ERROR] After correcting the problems, you can resume the build with the
command
[ERROR] mvn <goals> -rf :forge-shell-api
[ubuntu 12.04 - Apache Maven 3.0.4 - Java version: 1.6.0_24, vendor: Sun
Microsystems Inc. Java home: /usr/lib/jvm/java-6-openjdk-amd64/jre Default
locale: it_IT, platform encoding: UTF-8 OS name: "linux", version:
"3.2.0-29-generic", arch: "amd64", family: "unix"]
Any help on this?
Fiorenzo
12 years, 2 months
Project injection issue in a plugin and classloader
by Jérémie
Hi all,
I want to inject the current project in my plugin.
This works well when running my unit tests, but not after installation via
"forge source-plugin" or "forge git-plugin".
This problem seems to come from a different classloader for the
"javax.inject.Inject" class.
At line 221 in org.jboss.weld.util.Bean: for (WeldField<?, ?>
annotatedField : t.getDeclaredWeldFields(Inject.class))
We have Inject class with a different classloader of the key used in the
map.
My code can be found here : https://github.com/jerr/forge-eclipse-plugins
The modules installed into the $${home}/.forge directory seem loaded beings
in a different classloader.
Do you have a good practice for this?
Thank you for your help.
Jeremie.
12 years, 2 months
problems with mvn test
by JFlower
Hi,
I have the following errors running "mvn clean package".
Can you help me?
Fiorenzo
...
...
[INFO] --- maven-surefire-plugin:2.12:test (default-test) @
forge-parser-java ---
[INFO] Surefire report directory:
/home/fiorenzo/git/core/parser-java/target/surefire-reports
-------------------------------------------------------
T E S T S
-------------------------------------------------------
Running org.jboss.forge.test.parser.java.FieldAnnotationTest
Tests run: 21, Failures: 0, Errors: 21, Skipped: 0, Time elapsed: 0.428 sec
<<< FAILURE!
Running org.jboss.forge.test.parser.java.util.TypesTest
Tests run: 5, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.003 sec
Running org.jboss.forge.test.parser.java.util.RefactoryTest
Tests run: 5, Failures: 0, Errors: 5, Skipped: 0, Time elapsed: 0.013 sec
<<< FAILURE!
Running org.jboss.forge.test.parser.java.util.FormatterTest
Tests run: 1, Failures: 0, Errors: 1, Skipped: 0, Time elapsed: 0.002 sec
<<< FAILURE!
Running org.jboss.forge.test.parser.java.JavaParserTest
Tests run: 1, Failures: 0, Errors: 1, Skipped: 0, Time elapsed: 0.003 sec
<<< FAILURE!
Running org.jboss.forge.test.parser.java.JavaEnumTest
Tests run: 1, Failures: 0, Errors: 1, Skipped: 0, Time elapsed: 0.005 sec
<<< FAILURE!
Running org.jboss.forge.test.parser.java.MethodAnnotationTest
Tests run: 20, Failures: 0, Errors: 20, Skipped: 0, Time elapsed: 0.061 sec
<<< FAILURE!
Running org.jboss.forge.test.parser.java.JavaInterfaceTest
Tests run: 4, Failures: 0, Errors: 4, Skipped: 0, Time elapsed: 0.036 sec
<<< FAILURE!
Running org.jboss.forge.test.parser.java.MethodThrowsExceptionsTest
Tests run: 8, Failures: 0, Errors: 8, Skipped: 0, Time elapsed: 0.017 sec
<<< FAILURE!
Running org.jboss.forge.test.parser.java.MethodReturnTypeTest
Tests run: 11, Failures: 0, Errors: 11, Skipped: 0, Time elapsed: 0.03 sec
<<< FAILURE!
Running org.jboss.forge.test.parser.java.JavaClassMethodTest
Tests run: 10, Failures: 0, Errors: 10, Skipped: 0, Time elapsed: 0.025 sec
<<< FAILURE!
Running org.jboss.forge.test.parser.java.MethodVisibilityTest
Tests run: 4, Failures: 0, Errors: 4, Skipped: 0, Time elapsed: 0.009 sec
<<< FAILURE!
Running org.jboss.forge.test.parser.java.JavaClassInterfaceTest
Tests run: 6, Failures: 0, Errors: 6, Skipped: 0, Time elapsed: 0.014 sec
<<< FAILURE!
Running org.jboss.forge.test.parser.java.JavaClassAnnotationTest
Tests run: 20, Failures: 0, Errors: 20, Skipped: 0, Time elapsed: 0.06 sec
<<< FAILURE!
Running org.jboss.forge.test.parser.java.FieldTest
Tests run: 20, Failures: 0, Errors: 20, Skipped: 0, Time elapsed: 0.061 sec
<<< FAILURE!
Running org.jboss.forge.test.parser.java.MethodSignatureTest
Tests run: 5, Failures: 0, Errors: 5, Skipped: 0, Time elapsed: 0.008 sec
<<< FAILURE!
Running org.jboss.forge.test.parser.java.FieldTypeTest
Tests run: 11, Failures: 0, Errors: 11, Skipped: 0, Time elapsed: 0.034 sec
<<< FAILURE!
Running org.jboss.forge.test.parser.java.JavaInterfaceInterfaceTest
Tests run: 6, Failures: 0, Errors: 6, Skipped: 0, Time elapsed: 0.014 sec
<<< FAILURE!
Running org.jboss.forge.test.parser.java.JavaClassCreationTest
Tests run: 1, Failures: 0, Errors: 1, Skipped: 0, Time elapsed: 0.001 sec
<<< FAILURE!
Running org.jboss.forge.test.parser.java.ResolveTypeTest
Tests run: 16, Failures: 0, Errors: 16, Skipped: 0, Time elapsed: 0.053 sec
<<< FAILURE!
Running org.jboss.forge.test.parser.java.JavaClassVisibilityTest
Tests run: 4, Failures: 0, Errors: 4, Skipped: 0, Time elapsed: 0.019 sec
<<< FAILURE!
Running org.jboss.forge.test.parser.java.JavaClassTest
Tests run: 27, Failures: 0, Errors: 27, Skipped: 0, Time elapsed: 0.167 sec
<<< FAILURE!
Running org.jboss.forge.test.parser.java.FieldVisibilityTest
Tests run: 4, Failures: 0, Errors: 4, Skipped: 0, Time elapsed: 0.017 sec
<<< FAILURE!
Results :
Tests in error:
testParseEnumValueStaticImport(org.jboss.forge.test.parser.java.FieldAnnotationTest):
class "org.eclipse.core.runtime.Plugin"'s signer information does not match
signer information of other classes in the same package
testParseAnnotation(org.jboss.forge.test.parser.java.FieldAnnotationTest):
class "org.eclipse.core.runtime.Plugin"'s signer information does not match
signer information of other classes in the same package
testAddAnnotation(org.jboss.forge.test.parser.java.FieldAnnotationTest):
class "org.eclipse.core.runtime.Plugin"'s signer information does not match
signer information of other classes in the same package
testAddAnnotationByClass(org.jboss.forge.test.parser.java.FieldAnnotationTest):
class "org.eclipse.core.runtime.Plugin"'s signer information does not match
signer information of other classes in the same package
testAddAnnotationByName(org.jboss.forge.test.parser.java.FieldAnnotationTest):
class "org.eclipse.core.runtime.Plugin"'s signer information does not match
signer information of other classes in the same package
testCanAddAnnotationDuplicate(org.jboss.forge.test.parser.java.FieldAnnotationTest):
class "org.eclipse.core.runtime.Plugin"'s signer information does not match
signer information of other classes in the same package
testCannotAddAnnotationWithIllegalName(org.jboss.forge.test.parser.java.FieldAnnotationTest):
class "org.eclipse.core.runtime.Plugin"'s signer information does not match
signer information of other classes in the same package
testAddEnumValue(org.jboss.forge.test.parser.java.FieldAnnotationTest):
class "org.eclipse.core.runtime.Plugin"'s signer information does not match
signer information of other classes in the same package
testAddEnumNameValue(org.jboss.forge.test.parser.java.FieldAnnotationTest):
class "org.eclipse.core.runtime.Plugin"'s signer information does not match
signer information of other classes in the same package
testAddLiteralValue(org.jboss.forge.test.parser.java.FieldAnnotationTest):
class "org.eclipse.core.runtime.Plugin"'s signer information does not match
signer information of other classes in the same package
testAddObjectValue(org.jboss.forge.test.parser.java.FieldAnnotationTest):
class "org.eclipse.core.runtime.Plugin"'s signer information does not match
signer information of other classes in the same package
testAddValueConvertsToNormalAnnotation(org.jboss.forge.test.parser.java.FieldAnnotationTest):
class "org.eclipse.core.runtime.Plugin"'s signer information does not match
signer information of other classes in the same package
testAnnotationBeginsAsMarker(org.jboss.forge.test.parser.java.FieldAnnotationTest):
class "org.eclipse.core.runtime.Plugin"'s signer information does not match
signer information of other classes in the same package
testHasAnnotationClassType(org.jboss.forge.test.parser.java.FieldAnnotationTest):
class "org.eclipse.core.runtime.Plugin"'s signer information does not match
signer information of other classes in the same package
testHasAnnotationStringType(org.jboss.forge.test.parser.java.FieldAnnotationTest):
class "org.eclipse.core.runtime.Plugin"'s signer information does not match
signer information of other classes in the same package
testHasAnnotationStringTypeSimple(org.jboss.forge.test.parser.java.FieldAnnotationTest):
class "org.eclipse.core.runtime.Plugin"'s signer information does not match
signer information of other classes in the same package
testGetAnnotationClassType(org.jboss.forge.test.parser.java.FieldAnnotationTest):
class "org.eclipse.core.runtime.Plugin"'s signer information does not match
signer information of other classes in the same package
testGetAnnotationStringType(org.jboss.forge.test.parser.java.FieldAnnotationTest):
class "org.eclipse.core.runtime.Plugin"'s signer information does not match
signer information of other classes in the same package
testGetAnnotationStringTypeSimple(org.jboss.forge.test.parser.java.FieldAnnotationTest):
class "org.eclipse.core.runtime.Plugin"'s signer information does not match
signer information of other classes in the same package
testRemoveAllValues(org.jboss.forge.test.parser.java.FieldAnnotationTest):
class "org.eclipse.core.runtime.Plugin"'s signer information does not match
signer information of other classes in the same package
testGetNames(org.jboss.forge.test.parser.java.FieldAnnotationTest): class
"org.eclipse.core.runtime.Plugin"'s signer information does not match
signer information of other classes in the same package
testAddGettersAndSetters(org.jboss.forge.test.parser.java.util.RefactoryTest):
class "org.eclipse.core.runtime.Plugin"'s signer information does not match
signer information of other classes in the same package
testAddGettersAndSettersCamelCase(org.jboss.forge.test.parser.java.util.RefactoryTest):
class "org.eclipse.core.runtime.Plugin"'s signer information does not match
signer information of other classes in the same package
testAddGetterNotSetterForFinalField(org.jboss.forge.test.parser.java.util.RefactoryTest):
class "org.eclipse.core.runtime.Plugin"'s signer information does not match
signer information of other classes in the same package
testAddGettersAndSettersGeneric(org.jboss.forge.test.parser.java.util.RefactoryTest):
class "org.eclipse.core.runtime.Plugin"'s signer information does not match
signer information of other classes in the same package
testCreateToStringFromFields(org.jboss.forge.test.parser.java.util.RefactoryTest):
class "org.eclipse.core.runtime.Plugin"'s signer information does not match
signer information of other classes in the same package
org.jboss.forge.test.parser.java.util.FormatterTest: class
"org.eclipse.core.runtime.Plugin"'s signer information does not match
signer information of other classes in the same package
testExceptionWhenBadFileParsed(org.jboss.forge.test.parser.java.JavaParserTest):
Unexpected exception, expected<org.jboss.forge.parser.ParserException> but
was<java.lang.SecurityException>
testCanParseEnum(org.jboss.forge.test.parser.java.JavaEnumTest): class
"org.eclipse.core.runtime.Plugin"'s signer information does not match
signer information of other classes in the same package
testParseAnnotation(org.jboss.forge.test.parser.java.MethodAnnotationTest):
class "org.eclipse.core.runtime.Plugin"'s signer information does not match
signer information of other classes in the same package
testAddAnnotation(org.jboss.forge.test.parser.java.MethodAnnotationTest):
class "org.eclipse.core.runtime.Plugin"'s signer information does not match
signer information of other classes in the same package
testAddAnnotationByClass(org.jboss.forge.test.parser.java.MethodAnnotationTest):
class "org.eclipse.core.runtime.Plugin"'s signer information does not match
signer information of other classes in the same package
testAddAnnotationByName(org.jboss.forge.test.parser.java.MethodAnnotationTest):
class "org.eclipse.core.runtime.Plugin"'s signer information does not match
signer information of other classes in the same package
testCanAddAnnotationDuplicate(org.jboss.forge.test.parser.java.MethodAnnotationTest):
class "org.eclipse.core.runtime.Plugin"'s signer information does not match
signer information of other classes in the same package
testCannotAddAnnotationWithIllegalName(org.jboss.forge.test.parser.java.MethodAnnotationTest):
class "org.eclipse.core.runtime.Plugin"'s signer information does not match
signer information of other classes in the same package
testAddEnumValue(org.jboss.forge.test.parser.java.MethodAnnotationTest):
class "org.eclipse.core.runtime.Plugin"'s signer information does not match
signer information of other classes in the same package
testAddEnumNameValue(org.jboss.forge.test.parser.java.MethodAnnotationTest):
class "org.eclipse.core.runtime.Plugin"'s signer information does not match
signer information of other classes in the same package
testAddLiteralValue(org.jboss.forge.test.parser.java.MethodAnnotationTest):
class "org.eclipse.core.runtime.Plugin"'s signer information does not match
signer information of other classes in the same package
testAddObjectValue(org.jboss.forge.test.parser.java.MethodAnnotationTest):
class "org.eclipse.core.runtime.Plugin"'s signer information does not match
signer information of other classes in the same package
testAddValueConvertsToNormalAnnotation(org.jboss.forge.test.parser.java.MethodAnnotationTest):
class "org.eclipse.core.runtime.Plugin"'s signer information does not match
signer information of other classes in the same package
testAnnotationBeginsAsMarker(org.jboss.forge.test.parser.java.MethodAnnotationTest):
class "org.eclipse.core.runtime.Plugin"'s signer information does not match
signer information of other classes in the same package
testHasAnnotationClassType(org.jboss.forge.test.parser.java.MethodAnnotationTest):
class "org.eclipse.core.runtime.Plugin"'s signer information does not match
signer information of other classes in the same package
testHasAnnotationStringType(org.jboss.forge.test.parser.java.MethodAnnotationTest):
class "org.eclipse.core.runtime.Plugin"'s signer information does not match
signer information of other classes in the same package
testHasAnnotationStringTypeSimple(org.jboss.forge.test.parser.java.MethodAnnotationTest):
class "org.eclipse.core.runtime.Plugin"'s signer information does not match
signer information of other classes in the same package
testGetAnnotationClassType(org.jboss.forge.test.parser.java.MethodAnnotationTest):
class "org.eclipse.core.runtime.Plugin"'s signer information does not match
signer information of other classes in the same package
testGetAnnotationStringType(org.jboss.forge.test.parser.java.MethodAnnotationTest):
class "org.eclipse.core.runtime.Plugin"'s signer information does not match
signer information of other classes in the same package
testGetAnnotationStringTypeSimple(org.jboss.forge.test.parser.java.MethodAnnotationTest):
class "org.eclipse.core.runtime.Plugin"'s signer information does not match
signer information of other classes in the same package
testRemoveAllValues(org.jboss.forge.test.parser.java.MethodAnnotationTest):
class "org.eclipse.core.runtime.Plugin"'s signer information does not match
signer information of other classes in the same package
testGetNames(org.jboss.forge.test.parser.java.MethodAnnotationTest):
class "org.eclipse.core.runtime.Plugin"'s signer information does not match
signer information of other classes in the same package
testCanParseInterface(org.jboss.forge.test.parser.java.JavaInterfaceTest):
class "org.eclipse.core.runtime.Plugin"'s signer information does not match
signer information of other classes in the same package
testCanParseBigInterface(org.jboss.forge.test.parser.java.JavaInterfaceTest):
class "org.eclipse.core.runtime.Plugin"'s signer information does not match
signer information of other classes in the same package
testImportJavaSource(org.jboss.forge.test.parser.java.JavaInterfaceTest):
class "org.eclipse.core.runtime.Plugin"'s signer information does not match
signer information of other classes in the same package
testImportImport(org.jboss.forge.test.parser.java.JavaInterfaceTest):
class "org.eclipse.core.runtime.Plugin"'s signer information does not match
signer information of other classes in the same package
testParseThrowsNone(org.jboss.forge.test.parser.java.MethodThrowsExceptionsTest):
class "org.eclipse.core.runtime.Plugin"'s signer information does not match
signer information of other classes in the same package
testParseThrowsOne(org.jboss.forge.test.parser.java.MethodThrowsExceptionsTest):
class "org.eclipse.core.runtime.Plugin"'s signer information does not match
signer information of other classes in the same package
testParseThrowsMany(org.jboss.forge.test.parser.java.MethodThrowsExceptionsTest):
class "org.eclipse.core.runtime.Plugin"'s signer information does not match
signer information of other classes in the same package
testAddThrowsOne(org.jboss.forge.test.parser.java.MethodThrowsExceptionsTest):
class "org.eclipse.core.runtime.Plugin"'s signer information does not match
signer information of other classes in the same package
testAddThrowsMany(org.jboss.forge.test.parser.java.MethodThrowsExceptionsTest):
class "org.eclipse.core.runtime.Plugin"'s signer information does not match
signer information of other classes in the same package
testRemoveThrowsNone(org.jboss.forge.test.parser.java.MethodThrowsExceptionsTest):
class "org.eclipse.core.runtime.Plugin"'s signer information does not match
signer information of other classes in the same package
testRemoveThrowsOne(org.jboss.forge.test.parser.java.MethodThrowsExceptionsTest):
class "org.eclipse.core.runtime.Plugin"'s signer information does not match
signer information of other classes in the same package
testRemoveThrowsMany(org.jboss.forge.test.parser.java.MethodThrowsExceptionsTest):
class "org.eclipse.core.runtime.Plugin"'s signer information does not match
signer information of other classes in the same package
testGetReturnTypeReturnsFullTypeForJavaLang(org.jboss.forge.test.parser.java.MethodReturnTypeTest):
class "org.eclipse.core.runtime.Plugin"'s signer information does not match
signer information of other classes in the same package
testGetReturnTypeReturnsFullTypeForJavaLangGeneric(org.jboss.forge.test.parser.java.MethodReturnTypeTest):
class "org.eclipse.core.runtime.Plugin"'s signer information does not match
signer information of other classes in the same package
testGetReturnTypeObjectArray(org.jboss.forge.test.parser.java.MethodReturnTypeTest):
class "org.eclipse.core.runtime.Plugin"'s signer information does not match
signer information of other classes in the same package
testGetReturnTypeObjectArrayParameterized(org.jboss.forge.test.parser.java.MethodReturnTypeTest):
class "org.eclipse.core.runtime.Plugin"'s signer information does not match
signer information of other classes in the same package
testGetReturnTypeObjectUnparameterized(org.jboss.forge.test.parser.java.MethodReturnTypeTest):
class "org.eclipse.core.runtime.Plugin"'s signer information does not match
signer information of other classes in the same package
testGetReturnTypeObjectParameterized(org.jboss.forge.test.parser.java.MethodReturnTypeTest):
class "org.eclipse.core.runtime.Plugin"'s signer information does not match
signer information of other classes in the same package
testGetReturnTypeObjectWildcard(org.jboss.forge.test.parser.java.MethodReturnTypeTest):
class "org.eclipse.core.runtime.Plugin"'s signer information does not match
signer information of other classes in the same package
testGetReturnTypeObjectParameterizedMultiple(org.jboss.forge.test.parser.java.MethodReturnTypeTest):
class "org.eclipse.core.runtime.Plugin"'s signer information does not match
signer information of other classes in the same package
testGetReturnTypeObjectParameterizedNested(org.jboss.forge.test.parser.java.MethodReturnTypeTest):
class "org.eclipse.core.runtime.Plugin"'s signer information does not match
signer information of other classes in the same package
testGetReturnTypeObjectParameterizedMultipleNested(org.jboss.forge.test.parser.java.MethodReturnTypeTest):
class "org.eclipse.core.runtime.Plugin"'s signer information does not match
signer information of other classes in the same package
testGetReturnTypeObjectParameterizedArrayMultipleNested(org.jboss.forge.test.parser.java.MethodReturnTypeTest):
class "org.eclipse.core.runtime.Plugin"'s signer information does not match
signer information of other classes in the same package
testSetName(org.jboss.forge.test.parser.java.JavaClassMethodTest): class
"org.eclipse.core.runtime.Plugin"'s signer information does not match
signer information of other classes in the same package
testSetReturnType(org.jboss.forge.test.parser.java.JavaClassMethodTest):
class "org.eclipse.core.runtime.Plugin"'s signer information does not match
signer information of other classes in the same package
testSetReturnTypeVoid(org.jboss.forge.test.parser.java.JavaClassMethodTest):
class "org.eclipse.core.runtime.Plugin"'s signer information does not match
signer information of other classes in the same package
testSetConstructor(org.jboss.forge.test.parser.java.JavaClassMethodTest):
class "org.eclipse.core.runtime.Plugin"'s signer information does not match
signer information of other classes in the same package
testSetAbstract(org.jboss.forge.test.parser.java.JavaClassMethodTest):
class "org.eclipse.core.runtime.Plugin"'s signer information does not match
signer information of other classes in the same package
testSetParameters(org.jboss.forge.test.parser.java.JavaClassMethodTest):
class "org.eclipse.core.runtime.Plugin"'s signer information does not match
signer information of other classes in the same package
testGetParameterType(org.jboss.forge.test.parser.java.JavaClassMethodTest):
class "org.eclipse.core.runtime.Plugin"'s signer information does not match
signer information of other classes in the same package
testHasMethodZeroParametersIgnoresMethodWithParameters(org.jboss.forge.test.parser.java.JavaClassMethodTest):
class "org.eclipse.core.runtime.Plugin"'s signer information does not match
signer information of other classes in the same package
testHasMethodZeroParameters(org.jboss.forge.test.parser.java.JavaClassMethodTest):
class "org.eclipse.core.runtime.Plugin"'s signer information does not match
signer information of other classes in the same package
testGetMembers(org.jboss.forge.test.parser.java.JavaClassMethodTest):
class "org.eclipse.core.runtime.Plugin"'s signer information does not match
signer information of other classes in the same package
testSetPublic(org.jboss.forge.test.parser.java.MethodVisibilityTest):
class "org.eclipse.core.runtime.Plugin"'s signer information does not match
signer information of other classes in the same package
testSetPrivate(org.jboss.forge.test.parser.java.MethodVisibilityTest):
class "org.eclipse.core.runtime.Plugin"'s signer information does not match
signer information of other classes in the same package
testSetProtected(org.jboss.forge.test.parser.java.MethodVisibilityTest):
class "org.eclipse.core.runtime.Plugin"'s signer information does not match
signer information of other classes in the same package
testSetPackagePrivate(org.jboss.forge.test.parser.java.MethodVisibilityTest):
class "org.eclipse.core.runtime.Plugin"'s signer information does not match
signer information of other classes in the same package
testAddInterfaceString(org.jboss.forge.test.parser.java.JavaClassInterfaceTest):
class "org.eclipse.core.runtime.Plugin"'s signer information does not match
signer information of other classes in the same package
testAddInterfaceClass(org.jboss.forge.test.parser.java.JavaClassInterfaceTest):
class "org.eclipse.core.runtime.Plugin"'s signer information does not match
signer information of other classes in the same package
testAddInterfaceJavaInterface(org.jboss.forge.test.parser.java.JavaClassInterfaceTest):
class "org.eclipse.core.runtime.Plugin"'s signer information does not match
signer information of other classes in the same package
testAddImproperInterface(org.jboss.forge.test.parser.java.JavaClassInterfaceTest):
class "org.eclipse.core.runtime.Plugin"'s signer information does not match
signer information of other classes in the same package
testGetInterfaces(org.jboss.forge.test.parser.java.JavaClassInterfaceTest):
class "org.eclipse.core.runtime.Plugin"'s signer information does not match
signer information of other classes in the same package
testRemoveInterface(org.jboss.forge.test.parser.java.JavaClassInterfaceTest):
class "org.eclipse.core.runtime.Plugin"'s signer information does not match
signer information of other classes in the same package
testParseAnnotation(org.jboss.forge.test.parser.java.JavaClassAnnotationTest):
class "org.eclipse.core.runtime.Plugin"'s signer information does not match
signer information of other classes in the same package
testAddAnnotation(org.jboss.forge.test.parser.java.JavaClassAnnotationTest):
class "org.eclipse.core.runtime.Plugin"'s signer information does not match
signer information of other classes in the same package
testAddAnnotationByClass(org.jboss.forge.test.parser.java.JavaClassAnnotationTest):
class "org.eclipse.core.runtime.Plugin"'s signer information does not match
signer information of other classes in the same package
testAddAnnotationByName(org.jboss.forge.test.parser.java.JavaClassAnnotationTest):
class "org.eclipse.core.runtime.Plugin"'s signer information does not match
signer information of other classes in the same package
testCanAddAnnotationDuplicate(org.jboss.forge.test.parser.java.JavaClassAnnotationTest):
class "org.eclipse.core.runtime.Plugin"'s signer information does not match
signer information of other classes in the same package
testCannotAddAnnotationWithIllegalName(org.jboss.forge.test.parser.java.JavaClassAnnotationTest):
class "org.eclipse.core.runtime.Plugin"'s signer information does not match
signer information of other classes in the same package
testAddEnumValue(org.jboss.forge.test.parser.java.JavaClassAnnotationTest):
class "org.eclipse.core.runtime.Plugin"'s signer information does not match
signer information of other classes in the same package
testAddEnumNameValue(org.jboss.forge.test.parser.java.JavaClassAnnotationTest):
class "org.eclipse.core.runtime.Plugin"'s signer information does not match
signer information of other classes in the same package
testAddLiteralValue(org.jboss.forge.test.parser.java.JavaClassAnnotationTest):
class "org.eclipse.core.runtime.Plugin"'s signer information does not match
signer information of other classes in the same package
testAddObjectValue(org.jboss.forge.test.parser.java.JavaClassAnnotationTest):
class "org.eclipse.core.runtime.Plugin"'s signer information does not match
signer information of other classes in the same package
testAddValueConvertsToNormalAnnotation(org.jboss.forge.test.parser.java.JavaClassAnnotationTest):
class "org.eclipse.core.runtime.Plugin"'s signer information does not match
signer information of other classes in the same package
testAnnotationBeginsAsMarker(org.jboss.forge.test.parser.java.JavaClassAnnotationTest):
class "org.eclipse.core.runtime.Plugin"'s signer information does not match
signer information of other classes in the same package
testHasAnnotationClassType(org.jboss.forge.test.parser.java.JavaClassAnnotationTest):
class "org.eclipse.core.runtime.Plugin"'s signer information does not match
signer information of other classes in the same package
testHasAnnotationStringType(org.jboss.forge.test.parser.java.JavaClassAnnotationTest):
class "org.eclipse.core.runtime.Plugin"'s signer information does not match
signer information of other classes in the same package
testHasAnnotationStringTypeSimple(org.jboss.forge.test.parser.java.JavaClassAnnotationTest):
class "org.eclipse.core.runtime.Plugin"'s signer information does not match
signer information of other classes in the same package
testGetAnnotationClassType(org.jboss.forge.test.parser.java.JavaClassAnnotationTest):
class "org.eclipse.core.runtime.Plugin"'s signer information does not match
signer information of other classes in the same package
testGetAnnotationStringType(org.jboss.forge.test.parser.java.JavaClassAnnotationTest):
class "org.eclipse.core.runtime.Plugin"'s signer information does not match
signer information of other classes in the same package
testGetAnnotationStringTypeSimple(org.jboss.forge.test.parser.java.JavaClassAnnotationTest):
class "org.eclipse.core.runtime.Plugin"'s signer information does not match
signer information of other classes in the same package
testRemoveAllValues(org.jboss.forge.test.parser.java.JavaClassAnnotationTest):
class "org.eclipse.core.runtime.Plugin"'s signer information does not match
signer information of other classes in the same package
testGetNames(org.jboss.forge.test.parser.java.JavaClassAnnotationTest):
class "org.eclipse.core.runtime.Plugin"'s signer information does not match
signer information of other classes in the same package
testSetName(org.jboss.forge.test.parser.java.FieldTest): class
"org.eclipse.core.runtime.Plugin"'s signer information does not match
signer information of other classes in the same package
testParse(org.jboss.forge.test.parser.java.FieldTest): class
"org.eclipse.core.runtime.Plugin"'s signer information does not match
signer information of other classes in the same package
testSetNameWithReservedWordPart(org.jboss.forge.test.parser.java.FieldTest):
class "org.eclipse.core.runtime.Plugin"'s signer information does not match
signer information of other classes in the same package
testIsTypeChecksImports(org.jboss.forge.test.parser.java.FieldTest):
class "org.eclipse.core.runtime.Plugin"'s signer information does not match
signer information of other classes in the same package
testIsTypeChecksImportsIgnoresJavaLang(org.jboss.forge.test.parser.java.FieldTest):
class "org.eclipse.core.runtime.Plugin"'s signer information does not match
signer information of other classes in the same package
testIsTypeStringChecksImports(org.jboss.forge.test.parser.java.FieldTest):
class "org.eclipse.core.runtime.Plugin"'s signer information does not match
signer information of other classes in the same package
testIsTypeChecksImportsTypes(org.jboss.forge.test.parser.java.FieldTest):
class "org.eclipse.core.runtime.Plugin"'s signer information does not match
signer information of other classes in the same package
testSetTypeSimpleNameDoesNotAddImport(org.jboss.forge.test.parser.java.FieldTest):
class "org.eclipse.core.runtime.Plugin"'s signer information does not match
signer information of other classes in the same package
testSetType(org.jboss.forge.test.parser.java.FieldTest): class
"org.eclipse.core.runtime.Plugin"'s signer information does not match
signer information of other classes in the same package
testSetTypeStringIntPrimitive(org.jboss.forge.test.parser.java.FieldTest):
class "org.eclipse.core.runtime.Plugin"'s signer information does not match
signer information of other classes in the same package
testSetTypeClassIntPrimitive(org.jboss.forge.test.parser.java.FieldTest):
class "org.eclipse.core.runtime.Plugin"'s signer information does not match
signer information of other classes in the same package
testSetTypeString(org.jboss.forge.test.parser.java.FieldTest): class
"org.eclipse.core.runtime.Plugin"'s signer information does not match
signer information of other classes in the same package
testAddField(org.jboss.forge.test.parser.java.FieldTest): class
"org.eclipse.core.runtime.Plugin"'s signer information does not match
signer information of other classes in the same package
testAddFieldWithVisibilityScope(org.jboss.forge.test.parser.java.FieldTest):
class "org.eclipse.core.runtime.Plugin"'s signer information does not match
signer information of other classes in the same package
testIsPrimitive(org.jboss.forge.test.parser.java.FieldTest): class
"org.eclipse.core.runtime.Plugin"'s signer information does not match
signer information of other classes in the same package
testAddFieldInitializerLiteral(org.jboss.forge.test.parser.java.FieldTest):
class "org.eclipse.core.runtime.Plugin"'s signer information does not match
signer information of other classes in the same package
testAddFieldInitializerLiteralIgnoresTerminator(org.jboss.forge.test.parser.java.FieldTest):
class "org.eclipse.core.runtime.Plugin"'s signer information does not match
signer information of other classes in the same package
testAddFieldInitializerString(org.jboss.forge.test.parser.java.FieldTest):
class "org.eclipse.core.runtime.Plugin"'s signer information does not match
signer information of other classes in the same package
testAddQualifiedFieldType(org.jboss.forge.test.parser.java.FieldTest):
class "org.eclipse.core.runtime.Plugin"'s signer information does not match
signer information of other classes in the same package
testHasField(org.jboss.forge.test.parser.java.FieldTest): class
"org.eclipse.core.runtime.Plugin"'s signer information does not match
signer information of other classes in the same package
testEmptyMethodSignature(org.jboss.forge.test.parser.java.MethodSignatureTest):
class "org.eclipse.core.runtime.Plugin"'s signer information does not match
signer information of other classes in the same package
testMethodSignatureParams(org.jboss.forge.test.parser.java.MethodSignatureTest):
class "org.eclipse.core.runtime.Plugin"'s signer information does not match
signer information of other classes in the same package
testMethodParams(org.jboss.forge.test.parser.java.MethodSignatureTest):
class "org.eclipse.core.runtime.Plugin"'s signer information does not match
signer information of other classes in the same package
testMethodVisibility(org.jboss.forge.test.parser.java.MethodSignatureTest):
class "org.eclipse.core.runtime.Plugin"'s signer information does not match
signer information of other classes in the same package
testMethodVisibilityWithSetter(org.jboss.forge.test.parser.java.MethodSignatureTest):
class "org.eclipse.core.runtime.Plugin"'s signer information does not match
signer information of other classes in the same package
testGetReturnTypeReturnsFullTypeForJavaLang(org.jboss.forge.test.parser.java.FieldTypeTest):
class "org.eclipse.core.runtime.Plugin"'s signer information does not match
signer information of other classes in the same package
testGetReturnTypeReturnsFullTypeForJavaLangGeneric(org.jboss.forge.test.parser.java.FieldTypeTest):
class "org.eclipse.core.runtime.Plugin"'s signer information does not match
signer information of other classes in the same package
testGetReturnTypeObjectArray(org.jboss.forge.test.parser.java.FieldTypeTest):
class "org.eclipse.core.runtime.Plugin"'s signer information does not match
signer information of other classes in the same package
testGetReturnTypeObjectArrayParameterized(org.jboss.forge.test.parser.java.FieldTypeTest):
class "org.eclipse.core.runtime.Plugin"'s signer information does not match
signer information of other classes in the same package
testGetReturnTypeObjectUnparameterized(org.jboss.forge.test.parser.java.FieldTypeTest):
class "org.eclipse.core.runtime.Plugin"'s signer information does not match
signer information of other classes in the same package
testGetReturnTypeObjectParameterized(org.jboss.forge.test.parser.java.FieldTypeTest):
class "org.eclipse.core.runtime.Plugin"'s signer information does not match
signer information of other classes in the same package
testGetReturnTypeObjectWildcard(org.jboss.forge.test.parser.java.FieldTypeTest):
class "org.eclipse.core.runtime.Plugin"'s signer information does not match
signer information of other classes in the same package
testGetReturnTypeObjectParameterizedMultiple(org.jboss.forge.test.parser.java.FieldTypeTest):
class "org.eclipse.core.runtime.Plugin"'s signer information does not match
signer information of other classes in the same package
testGetReturnTypeObjectParameterizedNested(org.jboss.forge.test.parser.java.FieldTypeTest):
class "org.eclipse.core.runtime.Plugin"'s signer information does not match
signer information of other classes in the same package
testGetReturnTypeObjectParameterizedMultipleNested(org.jboss.forge.test.parser.java.FieldTypeTest):
class "org.eclipse.core.runtime.Plugin"'s signer information does not match
signer information of other classes in the same package
testGetReturnTypeObjectParameterizedArrayMultipleNested(org.jboss.forge.test.parser.java.FieldTypeTest):
class "org.eclipse.core.runtime.Plugin"'s signer information does not match
signer information of other classes in the same package
testAddInterfaceString(org.jboss.forge.test.parser.java.JavaInterfaceInterfaceTest):
class "org.eclipse.core.runtime.Plugin"'s signer information does not match
signer information of other classes in the same package
testAddInterfaceClass(org.jboss.forge.test.parser.java.JavaInterfaceInterfaceTest):
class "org.eclipse.core.runtime.Plugin"'s signer information does not match
signer information of other classes in the same package
testAddInterfaceJavaInterface(org.jboss.forge.test.parser.java.JavaInterfaceInterfaceTest):
class "org.eclipse.core.runtime.Plugin"'s signer information does not match
signer information of other classes in the same package
testAddImproperInterface(org.jboss.forge.test.parser.java.JavaInterfaceInterfaceTest):
class "org.eclipse.core.runtime.Plugin"'s signer information does not match
signer information of other classes in the same package
testGetInterfaces(org.jboss.forge.test.parser.java.JavaInterfaceInterfaceTest):
class "org.eclipse.core.runtime.Plugin"'s signer information does not match
signer information of other classes in the same package
testRemoveInterface(org.jboss.forge.test.parser.java.JavaInterfaceInterfaceTest):
class "org.eclipse.core.runtime.Plugin"'s signer information does not match
signer information of other classes in the same package
org.jboss.forge.test.parser.java.JavaClassCreationTest: class
"org.eclipse.core.runtime.Plugin"'s signer information does not match
signer information of other classes in the same package
testResolveTypePrimitiveByte(org.jboss.forge.test.parser.java.ResolveTypeTest):
class "org.eclipse.core.runtime.Plugin"'s signer information does not match
signer information of other classes in the same package
testResolveTypePrimitiveShort(org.jboss.forge.test.parser.java.ResolveTypeTest):
class "org.eclipse.core.runtime.Plugin"'s signer information does not match
signer information of other classes in the same package
testResolveTypePrimitiveInt(org.jboss.forge.test.parser.java.ResolveTypeTest):
class "org.eclipse.core.runtime.Plugin"'s signer information does not match
signer information of other classes in the same package
testResolveTypePrimitiveLong(org.jboss.forge.test.parser.java.ResolveTypeTest):
class "org.eclipse.core.runtime.Plugin"'s signer information does not match
signer information of other classes in the same package
testResolveTypePrimitiveFloat(org.jboss.forge.test.parser.java.ResolveTypeTest):
class "org.eclipse.core.runtime.Plugin"'s signer information does not match
signer information of other classes in the same package
testResolveTypePrimitiveDouble(org.jboss.forge.test.parser.java.ResolveTypeTest):
class "org.eclipse.core.runtime.Plugin"'s signer information does not match
signer information of other classes in the same package
testResolveTypePrimitiveBoolean(org.jboss.forge.test.parser.java.ResolveTypeTest):
class "org.eclipse.core.runtime.Plugin"'s signer information does not match
signer information of other classes in the same package
testResolveTypePrimitiveChar(org.jboss.forge.test.parser.java.ResolveTypeTest):
class "org.eclipse.core.runtime.Plugin"'s signer information does not match
signer information of other classes in the same package
testResolveTypeByte(org.jboss.forge.test.parser.java.ResolveTypeTest):
class "org.eclipse.core.runtime.Plugin"'s signer information does not match
signer information of other classes in the same package
testResolveTypeShort(org.jboss.forge.test.parser.java.ResolveTypeTest):
class "org.eclipse.core.runtime.Plugin"'s signer information does not match
signer information of other classes in the same package
testResolveTypeInt(org.jboss.forge.test.parser.java.ResolveTypeTest):
class "org.eclipse.core.runtime.Plugin"'s signer information does not match
signer information of other classes in the same package
testResolveTypeLong(org.jboss.forge.test.parser.java.ResolveTypeTest):
class "org.eclipse.core.runtime.Plugin"'s signer information does not match
signer information of other classes in the same package
testResolveTypeFloat(org.jboss.forge.test.parser.java.ResolveTypeTest):
class "org.eclipse.core.runtime.Plugin"'s signer information does not match
signer information of other classes in the same package
testResolveTypeDouble(org.jboss.forge.test.parser.java.ResolveTypeTest):
class "org.eclipse.core.runtime.Plugin"'s signer information does not match
signer information of other classes in the same package
testResolveTypeBoolean(org.jboss.forge.test.parser.java.ResolveTypeTest):
class "org.eclipse.core.runtime.Plugin"'s signer information does not match
signer information of other classes in the same package
testResolveTypeChar(org.jboss.forge.test.parser.java.ResolveTypeTest):
class "org.eclipse.core.runtime.Plugin"'s signer information does not match
signer information of other classes in the same package
testSetPublic(org.jboss.forge.test.parser.java.JavaClassVisibilityTest):
class "org.eclipse.core.runtime.Plugin"'s signer information does not match
signer information of other classes in the same package
testSetPrivate(org.jboss.forge.test.parser.java.JavaClassVisibilityTest):
class "org.eclipse.core.runtime.Plugin"'s signer information does not match
signer information of other classes in the same package
testSetProtected(org.jboss.forge.test.parser.java.JavaClassVisibilityTest):
class "org.eclipse.core.runtime.Plugin"'s signer information does not match
signer information of other classes in the same package
testSetPackagePrivate(org.jboss.forge.test.parser.java.JavaClassVisibilityTest):
class "org.eclipse.core.runtime.Plugin"'s signer information does not match
signer information of other classes in the same package
testSetName(org.jboss.forge.test.parser.java.JavaClassTest): class
"org.eclipse.core.runtime.Plugin"'s signer information does not match
signer information of other classes in the same package
testSetAbstract(org.jboss.forge.test.parser.java.JavaClassTest): class
"org.eclipse.core.runtime.Plugin"'s signer information does not match
signer information of other classes in the same package
testParse(org.jboss.forge.test.parser.java.JavaClassTest): class
"org.eclipse.core.runtime.Plugin"'s signer information does not match
signer information of other classes in the same package
testApplyChangesNotRequiredForModification(org.jboss.forge.test.parser.java.JavaClassTest):
class "org.eclipse.core.runtime.Plugin"'s signer information does not match
signer information of other classes in the same package
testFormattingIsNotChanged(org.jboss.forge.test.parser.java.JavaClassTest):
class "org.eclipse.core.runtime.Plugin"'s signer information does not match
signer information of other classes in the same package
testSetNameUpdatesConstructorNames(org.jboss.forge.test.parser.java.JavaClassTest):
class "org.eclipse.core.runtime.Plugin"'s signer information does not match
signer information of other classes in the same package
testSetPackage(org.jboss.forge.test.parser.java.JavaClassTest): class
"org.eclipse.core.runtime.Plugin"'s signer information does not match
signer information of other classes in the same package
testSetPackageDefault(org.jboss.forge.test.parser.java.JavaClassTest):
class "org.eclipse.core.runtime.Plugin"'s signer information does not match
signer information of other classes in the same package
testAddImportPrimitiveThrowsException(org.jboss.forge.test.parser.java.JavaClassTest):
class "org.eclipse.core.runtime.Plugin"'s signer information does not match
signer information of other classes in the same package
testAddImport(org.jboss.forge.test.parser.java.JavaClassTest): class
"org.eclipse.core.runtime.Plugin"'s signer information does not match
signer information of other classes in the same package
testCannotAddSimpleClassImport(org.jboss.forge.test.parser.java.JavaClassTest):
class "org.eclipse.core.runtime.Plugin"'s signer information does not match
signer information of other classes in the same package
testAddImportClasses(org.jboss.forge.test.parser.java.JavaClassTest):
class "org.eclipse.core.runtime.Plugin"'s signer information does not match
signer information of other classes in the same package
testAddImportStatic(org.jboss.forge.test.parser.java.JavaClassTest):
class "org.eclipse.core.runtime.Plugin"'s signer information does not match
signer information of other classes in the same package
testHasImport(org.jboss.forge.test.parser.java.JavaClassTest): class
"org.eclipse.core.runtime.Plugin"'s signer information does not match
signer information of other classes in the same package
testCannotAddDuplicateImport(org.jboss.forge.test.parser.java.JavaClassTest):
class "org.eclipse.core.runtime.Plugin"'s signer information does not match
signer information of other classes in the same package
testRemoveImportByClass(org.jboss.forge.test.parser.java.JavaClassTest):
class "org.eclipse.core.runtime.Plugin"'s signer information does not match
signer information of other classes in the same package
testRemoveImportByName(org.jboss.forge.test.parser.java.JavaClassTest):
class "org.eclipse.core.runtime.Plugin"'s signer information does not match
signer information of other classes in the same package
testRemoveImportByReference(org.jboss.forge.test.parser.java.JavaClassTest):
class "org.eclipse.core.runtime.Plugin"'s signer information does not match
signer information of other classes in the same package
testRequiresImport(org.jboss.forge.test.parser.java.JavaClassTest): class
"org.eclipse.core.runtime.Plugin"'s signer information does not match
signer information of other classes in the same package
testAddImportAcceptsJavaLangPackage(org.jboss.forge.test.parser.java.JavaClassTest):
class "org.eclipse.core.runtime.Plugin"'s signer information does not match
signer information of other classes in the same package
testAddMethod(org.jboss.forge.test.parser.java.JavaClassTest): class
"org.eclipse.core.runtime.Plugin"'s signer information does not match
signer information of other classes in the same package
testAddMethodFromString(org.jboss.forge.test.parser.java.JavaClassTest):
class "org.eclipse.core.runtime.Plugin"'s signer information does not match
signer information of other classes in the same package
testRemoveMethod(org.jboss.forge.test.parser.java.JavaClassTest): class
"org.eclipse.core.runtime.Plugin"'s signer information does not match
signer information of other classes in the same package
testAddConstructor(org.jboss.forge.test.parser.java.JavaClassTest): class
"org.eclipse.core.runtime.Plugin"'s signer information does not match
signer information of other classes in the same package
testAddConstructorIngoresReturnTypeAndName(org.jboss.forge.test.parser.java.JavaClassTest):
class "org.eclipse.core.runtime.Plugin"'s signer information does not match
signer information of other classes in the same package
testSuperType(org.jboss.forge.test.parser.java.JavaClassTest): class
"org.eclipse.core.runtime.Plugin"'s signer information does not match
signer information of other classes in the same package
testSuperTypeJavaLang(org.jboss.forge.test.parser.java.JavaClassTest):
class "org.eclipse.core.runtime.Plugin"'s signer information does not match
signer information of other classes in the same package
testSetPublic(org.jboss.forge.test.parser.java.FieldVisibilityTest):
class "org.eclipse.core.runtime.Plugin"'s signer information does not match
signer information of other classes in the same package
testSetPrivate(org.jboss.forge.test.parser.java.FieldVisibilityTest):
class "org.eclipse.core.runtime.Plugin"'s signer information does not match
signer information of other classes in the same package
testSetProtected(org.jboss.forge.test.parser.java.FieldVisibilityTest):
class "org.eclipse.core.runtime.Plugin"'s signer information does not match
signer information of other classes in the same package
testSetPackagePrivate(org.jboss.forge.test.parser.java.FieldVisibilityTest):
class "org.eclipse.core.runtime.Plugin"'s signer information does not match
signer information of other classes in the same package
Tests run: 211, Failures: 0, Errors: 206, Skipped: 0
12 years, 2 months