Searched refs:separatorPre (Results 1 – 2 of 2) sorted by relevance
/external/javaparser/javaparser-core/src/main/java/com/github/javaparser/printer/concretesyntaxmodel/ |
D | CsmList.java | 36 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()
|
D | CsmElement.java | 121 …static CsmElement list(ObservableProperty property, CsmElement separatorPre, CsmElement separatorP… in list() argument 122 return new CsmList(property, separatorPre, separatorPost, preceeding, following); in list()
|