Search in sources :

Example 11 with ToString

use of org.bedework.util.misc.ToString in project bw-calendar-engine by Bedework.

the class IndexStatistics method toString.

@Override
public String toString() {
    final ToString ts = new ToString(this);
    toStringSegment(ts);
    return ts.toString();
}
Also used : ToString(org.bedework.util.misc.ToString)

Example 12 with ToString

use of org.bedework.util.misc.ToString in project bw-calendar-engine by Bedework.

the class BwSystem method toString.

@Override
public String toString() {
    ToString ts = new ToString(this);
    toStringSegment(ts);
    ts.newLine();
    ts.append("name", getName());
    ts.append("properties", getProperties());
    return ts.toString();
}
Also used : ToString(org.bedework.util.misc.ToString)

Example 13 with ToString

use of org.bedework.util.misc.ToString in project bw-calendar-engine by Bedework.

the class BwXproperty method toString.

@Override
public String toString() {
    final ToString ts = new ToString(this);
    toStringSegment(ts);
    return ts.toString();
}
Also used : ToString(org.bedework.util.misc.ToString)

Example 14 with ToString

use of org.bedework.util.misc.ToString in project bw-calendar-engine by Bedework.

the class EventPropertiesReference method toString.

@Override
public String toString() {
    ToString ts = new ToString(this);
    ts.append("collection", getCollection());
    ts.append("path", getPath());
    if (!getCollection()) {
        ts.append("uid", getUid());
    }
    return ts.toString();
}
Also used : ToString(org.bedework.util.misc.ToString)

Example 15 with ToString

use of org.bedework.util.misc.ToString in project bw-calendar-engine by Bedework.

the class PollItmId method toString.

@Override
public String toString() {
    final ToString ts = new ToString(this);
    if (getResponse() != null) {
        ts.append("response", getResponse());
        ts.append("publicComment", getPublicComment());
    }
    ts.append("id", getId());
    return ts.toString();
}
Also used : ToString(org.bedework.util.misc.ToString)

Aggregations

ToString (org.bedework.util.misc.ToString)59 CloneForOverride (org.bedework.calfacade.annotations.CloneForOverride)2 BwAlarm (org.bedework.calfacade.BwAlarm)1 NoProxy (org.bedework.calfacade.annotations.ical.NoProxy)1