예제 #1
0
 /// <summary>
 /// Returns the String representation of the AtomGroup for display purpose only.
 /// </summary>
 /// <returns>The String representation of the AtomGroup.</returns>
 public override string ToString()
 {
     return(Operator +
            "(\n" +
            Misc.ArrayListToString(new ArrayList(members), "  ") +
            ")");
 }
예제 #2
0
 /// <summary>
 /// Returns the String representation of the AtomGroup running members for internal purpose only.
 /// </summary>
 /// <returns>The String representation of the AtomGroup.</returns>
 internal string ToStringWithRunningMembers()
 {
     return(Operator +
            "(\n" +
            Misc.ArrayListToString(new ArrayList(orderedMembers), "  ") +
            ")");
 }
예제 #3
0
 public override string ToString()
 {
     return(Misc.ArrayListToString(queryDefs));
 }