Home
last modified time | relevance | path

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

/external/javaparser/javaparser-core/src/main/java/com/github/javaparser/printer/concretesyntaxmodel/
DCsmList.java36 private final CsmElement separatorPre; field in CsmList
49 return separatorPre; in getSeparatorPre()
68 …public CsmList(ObservableProperty property, CsmElement separatorPre, CsmElement separatorPost, Csm… in CsmList() argument
70 this.separatorPre = separatorPre; in CsmList()
87 if (separatorPre != null && i != 0) { in prettyPrint()
88 separatorPre.prettyPrint(node, printer); in prettyPrint()
107 if (separatorPre != null && it.hasNext()) { in prettyPrint()
108 separatorPre.prettyPrint(node, printer); in prettyPrint()
DCsmElement.java121 …static CsmElement list(ObservableProperty property, CsmElement separatorPre, CsmElement separatorP… in list() argument
122 return new CsmList(property, separatorPre, separatorPost, preceeding, following); in list()