Home
last modified time | relevance | path

Searched refs:separatorPost (Results 1 – 2 of 2) sorted by relevance

/external/javaparser/javaparser-core/src/main/java/com/github/javaparser/printer/concretesyntaxmodel/
DCsmList.java35 private final CsmElement separatorPost; field in CsmList
45 return separatorPost; in getSeparatorPost()
68 …public CsmList(ObservableProperty property, CsmElement separatorPre, CsmElement separatorPost, Csm… in CsmList() argument
71 this.separatorPost = separatorPost; in CsmList()
91 if (separatorPost != null && i != (nodeList.size() - 1)) { in prettyPrint()
92 separatorPost.prettyPrint(node, printer); in prettyPrint()
111 if (separatorPost != null && it.hasNext()) { in prettyPrint()
112 separatorPost.prettyPrint(node, printer); in prettyPrint()
DCsmElement.java121 …list(ObservableProperty property, CsmElement separatorPre, CsmElement separatorPost, CsmElement pr… in list() argument
122 return new CsmList(property, separatorPre, separatorPost, preceeding, following); in list()