Skip to content

Commit 49e3165

Browse files
authored
Merge pull request #20 from rjkip/add-missing-parentid-property
Add missing ChromeTab#parentId
2 parents f6637ce + 68b424f commit 49e3165

File tree

1 file changed

+11
-0
lines changed
  • cdt-java-client/src/main/java/com/github/kklisura/cdt/services/types

1 file changed

+11
-0
lines changed

cdt-java-client/src/main/java/com/github/kklisura/cdt/services/types/ChromeTab.java

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,8 @@ public final class ChromeTab {
3030

3131
private String id;
3232

33+
private String parentId;
34+
3335
private String description;
3436

3537
private String title;
@@ -62,6 +64,15 @@ public String getId() {
6264
return id;
6365
}
6466

67+
/**
68+
* Gets parent id.
69+
*
70+
* @return the parent id
71+
*/
72+
public String getParentId() {
73+
return parentId;
74+
}
75+
6576
/**
6677
* Gets description.
6778
*

0 commit comments

Comments
 (0)