Author: dgolovin
Date: 2011-08-24 12:27:46 -0400 (Wed, 24 Aug 2011)
New Revision: 34230
Modified:
trunk/tests/plugins/org.jboss.tools.ui.bot.ext/src/org/jboss/tools/ui/bot/ext/entity/JavaClassEntity.java
Log:
Fix for build compilation errors:
JavaClassEntity classEntity = new JavaClassEntity();
[ERROR] ^^^^^^^^^^^^^^^^^^^^^
[ERROR] The constructor JavaClassEntity() is undefined
Empty constructor restored for JavaClassEntity.
Modified:
trunk/tests/plugins/org.jboss.tools.ui.bot.ext/src/org/jboss/tools/ui/bot/ext/entity/JavaClassEntity.java
===================================================================
---
trunk/tests/plugins/org.jboss.tools.ui.bot.ext/src/org/jboss/tools/ui/bot/ext/entity/JavaClassEntity.java 2011-08-24
15:13:39 UTC (rev 34229)
+++
trunk/tests/plugins/org.jboss.tools.ui.bot.ext/src/org/jboss/tools/ui/bot/ext/entity/JavaClassEntity.java 2011-08-24
16:27:46 UTC (rev 34230)
@@ -20,6 +20,9 @@
private String className = "";
private String packageName = "";
+ public JavaClassEntity() {
+ }
+
public JavaClassEntity(String packageName, String className) {
this.className = className;
this.packageName = packageName;
Show replies by date