[ofbiz-framework] branch trunk updated: Improved: Added getter for componentName.(OFBIZ-11751)

Previous Topic Next Topic
 
classic Classic list List threaded Threaded
1 message Options
Reply | Threaded
Open this post in threaded view
|

[ofbiz-framework] branch trunk updated: Improved: Added getter for componentName.(OFBIZ-11751)

Pawan Verma-2
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.git


The 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;
+    }
 }