public Collection<String> print() { Collection<String> lines = new ArrayList<String>(); lines.add("CSTAMonitorCall ::="); lines.add("{"); String indent = " "; lines.addAll(CSTAConnectionID.print(this.call, "call", indent)); lines.addAll(CSTAMonitorFilter.print(this.monitorFilter, "monitorFilter", indent)); lines.add("}"); return lines; }
public Collection<String> print() { Collection<String> lines = new ArrayList<String>(); lines.add("LucentQueryUcid ::="); lines.add("{"); String indent = " "; lines.addAll(CSTAConnectionID.print(this.call, "call", indent)); lines.add("}"); return lines; }
public static Collection<String> print(LucentUserCollectCode _this, String name, String _indent) { Collection<String> lines = new ArrayList<String>(); if (_this == null) { lines.add(_indent + name + " <null>"); return lines; } if (name != null) { lines.add(_indent + name); } lines.add(_indent + "{"); String indent = _indent + " "; lines.addAll(CollectCodeType.print(_this.type, "type", indent)); lines.addAll(ASNInteger.print(_this.digitsToBeCollected, "digitsToBeCollected", indent)); lines.addAll(ASNInteger.print(_this.timeout, "timeout", indent)); lines.addAll(CSTAConnectionID.print(_this.collectParty, "collectParty", indent)); lines.addAll(SpecificEvent.print(_this.specificEvent, "specificEvent", indent)); lines.add(_indent + "}"); return lines; }