This is an automated email from the ASF dual-hosted git repository.
pawan pushed a commit to branch trunk
in repository
https://gitbox.apache.org/repos/asf/ofbiz-framework.gitThe following commit(s) were added to refs/heads/trunk by this push:
new 2b39209 Improved: Added getter for componentName.(OFBIZ-11751)
2b39209 is described below
commit 2b39209a1c4ea56ba43f99d43c1a96c1919c4114
Author: Pawan Verma <
[hidden email]>
AuthorDate: Mon Jul 13 15:33:01 2020 +0530
Improved: Added getter for componentName.(OFBIZ-11751)
Thanks, Sebastian Berg for report and patch and Aditya Sharma for the review.
---
.../main/java/org/apache/ofbiz/webtools/labelmanager/LabelFile.java | 4 ++++
1 file changed, 4 insertions(+)
diff --git a/framework/webtools/src/main/java/org/apache/ofbiz/webtools/labelmanager/LabelFile.java b/framework/webtools/src/main/java/org/apache/ofbiz/webtools/labelmanager/LabelFile.java
index 15857e2..5ddd6d3 100644
--- a/framework/webtools/src/main/java/org/apache/ofbiz/webtools/labelmanager/LabelFile.java
+++ b/framework/webtools/src/main/java/org/apache/ofbiz/webtools/labelmanager/LabelFile.java
@@ -43,4 +43,8 @@ public class LabelFile {
public String getFilePath() {
return this.file.getPath();
}
+
+ public String getComponentName() {
+ return componentName;
+ }
}