Author: dgolovin
Date: 2008-09-16 19:23:07 -0400 (Tue, 16 Sep 2008)
New Revision: 10265
Modified:
trunk/vpe/plugins/org.jboss.tools.vpe/src/org/jboss/tools/vpe/editor/template/VpeAnyData.java
Log:
fix compilation errors in tests
Modified:
trunk/vpe/plugins/org.jboss.tools.vpe/src/org/jboss/tools/vpe/editor/template/VpeAnyData.java
===================================================================
---
trunk/vpe/plugins/org.jboss.tools.vpe/src/org/jboss/tools/vpe/editor/template/VpeAnyData.java 2008-09-16
22:59:09 UTC (rev 10264)
+++
trunk/vpe/plugins/org.jboss.tools.vpe/src/org/jboss/tools/vpe/editor/template/VpeAnyData.java 2008-09-16
23:23:07 UTC (rev 10265)
@@ -25,7 +25,28 @@
public VpeAnyData(String name) {
super(name);
}
+
public VpeAnyData(
+ String display,
+ String value,
+ String border,
+ String valueColor,
+ String valueBackgroundColor,
+ String backgroundColor,
+ String borderColor,
+ boolean showIcon
+ ) {
+ this(display,
+ null,
+ value,
+ border,
+ valueColor,
+ valueBackgroundColor,
+ backgroundColor,
+ borderColor,
+ showIcon);
+ }
+ public VpeAnyData(
String display,
String tagForDisplay,
String value,
@@ -50,6 +71,7 @@
public String getUri() {
return uri;
}
+
public void setUri(String uri) {
this.uri = uri;
}
@@ -57,6 +79,7 @@
public boolean isShowIcon(){
return showIcon;
}
+
public void setShowIcon(boolean flag){
showIcon = flag;
}
@@ -64,6 +87,7 @@
public String getBackgroundColor() {
return backgroundColor;
}
+
public void setBackgroundColor(String backgroundColor) {
this.backgroundColor = backgroundColor;
}
@@ -71,6 +95,7 @@
public String getBorder() {
return border;
}
+
public void setBorder(String border) {
this.border = border;
}
@@ -78,6 +103,7 @@
public String getBorderColor() {
return borderColor;
}
+
public void setBorderColor(String borderColor) {
this.borderColor = borderColor;
}
@@ -85,6 +111,7 @@
public String getDisplay() {
return display;
}
+
public void setDisplay(String display) {
this.display = display;
}
Show replies by date