Пример #1
0
 public void addWrapChar(IToken op, int depth, int position, int breakType, bool breakBefore, bool indentToFirstParm, int firstParmLocation, int currentIndent, String commaContextType)
 {
     WrapItem item = new WrapItem(op, depth, position, breakType, breakBefore, currentIndent);
     item.setIndentToFirstParm(indentToFirstParm);
     item.setFirstParmPos(firstParmLocation);
     item.setCommaContextType(commaContextType);
     mWrapItems.Add(item);
 }