singh-akhilesh commented on a change in pull request #3266:
URL: https://github.com/apache/netbeans/pull/3266#discussion_r835722795



##########
File path: 
java/java.sourceui/src/org/netbeans/api/java/source/ui/snippet/SourceLineMeta.java
##########
@@ -0,0 +1,36 @@
+package org.netbeans.api.java.source.ui.snippet;
+
+
+import java.util.List;
+
+public class SourceLineMeta {
+
+    String actualSourceLine;
+    List<MarkupTag> thisLineMarkUpTags;
+    String sourceLineWithoutComment;
+
+    public String getActualSourceLine() {
+        return actualSourceLine;
+    }
+
+    public void setActualSourceLine(String actualSourceLine) {
+        this.actualSourceLine = actualSourceLine;
+    }
+
+    public List<MarkupTag> getThisLineMarkUpTags() {
+        return thisLineMarkUpTags;
+    }
+
+    public void setThisLineMarkUpTags(List<MarkupTag> thisLineMarkUpTags) {
+        this.thisLineMarkUpTags = thisLineMarkUpTags;
+    }
+
+    public String getUncommentSourceLine() {

Review comment:
       Addressed.




-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]



---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists

Reply via email to