You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@netbeans.apache.org by GitBox <gi...@apache.org> on 2022/03/26 05:54:36 UTC

[GitHub] [netbeans] singh-akhilesh commented on a change in pull request #3266: Support for JEP 413: Snippet java docs

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: notifications-unsubscribe@netbeans.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



---------------------------------------------------------------------
To unsubscribe, e-mail: notifications-unsubscribe@netbeans.apache.org
For additional commands, e-mail: notifications-help@netbeans.apache.org

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