Author: lzoubek(a)redhat.com
Date: 2011-08-24 07:53:37 -0400 (Wed, 24 Aug 2011)
New Revision: 34221
Modified:
trunk/tests/plugins/org.jboss.tools.ui.bot.ext/src/org/jboss/tools/ui/bot/ext/entity/JavaClassEntity.java
Log:
swtbotext: added constructor with params
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
11:52:43 UTC (rev 34220)
+++
trunk/tests/plugins/org.jboss.tools.ui.bot.ext/src/org/jboss/tools/ui/bot/ext/entity/JavaClassEntity.java 2011-08-24
11:53:37 UTC (rev 34221)
@@ -20,6 +20,11 @@
private String className = "";
private String packageName = "";
+ public JavaClassEntity(String packageName, String className) {
+ this.className = className;
+ this.packageName = packageName;
+ }
+
public String getClassName() {
return className;
}
Show replies by date