Changeset 941
- Timestamp:
- 08/08/06 16:58:40
- Files:
-
- trunk/calendar3/calCore/src/org/bedework/calcore/hibernate/AdminGroupsDbImpl.java (modified) (2 diffs)
- trunk/calendar3/calFacade/src/org/bedework/calfacade/BwDateTime.java (modified) (2 diffs)
- trunk/calendar3/calFacade/src/org/bedework/calfacade/BwRecurrenceId.java (modified) (1 diff)
- trunk/calendar3/calFacade/src/org/bedework/calfacade/BwTimeZone.java (modified) (2 diffs)
- trunk/calendar3/calFacade/src/org/bedework/calfacade/CalFacadeException.java (modified) (1 diff)
- trunk/calendar3/calFacade/src/org/bedework/calfacade/svc/BwPreferences.java (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/calendar3/calCore/src/org/bedework/calcore/hibernate/AdminGroupsDbImpl.java
r661 r941 64 64 import java.util.Collection; 65 65 import java.util.Iterator; 66 import java.util.Set; 66 67 import java.util.TreeSet; 67 68 … … 103 104 } 104 105 105 Collection gs = sess.getList();106 Set gs = new TreeSet(sess.getList()); 106 107 107 108 if (val instanceof BwUser) { trunk/calendar3/calFacade/src/org/bedework/calfacade/BwDateTime.java
r862 r941 70 70 import net.fortuna.ical4j.model.property.DtStart; 71 71 72 /** Class to represent an RFC2 554date and datetime type. These are not stored72 /** Class to represent an RFC2445 date and datetime type. These are not stored 73 73 * in separate tables but as components of the including class. 74 74 * … … 90 90 private String tzid; 91 91 92 private String dtval; // rfc2 554date or datetime value92 private String dtval; // rfc2445 date or datetime value 93 93 94 94 /** */ trunk/calendar3/calFacade/src/org/bedework/calfacade/BwRecurrenceId.java
r2 r941 54 54 package org.bedework.calfacade; 55 55 56 /** Class to represent an RFC2 554recurrence id type. These are not stored56 /** Class to represent an RFC2445 recurrence id type. These are not stored 57 57 * in separate tables but as components of the including class. 58 58 * trunk/calendar3/calFacade/src/org/bedework/calfacade/BwTimeZone.java
r678 r941 58 58 59 59 /** Represents a stored timezone. This whole area is somewhat problematical, 60 * RFC2 554refers to timezones by tzid but thereis as yet not statndard60 * RFC2445 refers to timezones by tzid but thereis as yet not statndard 61 61 * source for timezones, nor any standard way of naming them. 62 62 * … … 76 76 private String tzid; 77 77 78 private String vtimezone; // rfc2 554representation78 private String vtimezone; // rfc2445 representation 79 79 80 80 /** This is the corresponding java.util.TimeZone id. trunk/calendar3/calFacade/src/org/bedework/calfacade/CalFacadeException.java
r507 r941 179 179 return extra; 180 180 } 181 182 /** 183 * Overrides parent 184 * @return String message and 'extra' 185 */ 186 public String getMessage() { 187 if (getExtra() != null) { 188 return super.getMessage() + "\t" + getExtra(); 189 } 190 191 return super.getMessage(); 192 } 181 193 } trunk/calendar3/calFacade/src/org/bedework/calfacade/svc/BwPreferences.java
r678 r941 323 323 Collection c = getSubscriptions(); 324 324 if (c.contains(val)) { 325 throw new CalFacadeException(CalFacadeException.duplicateSubscription); 325 throw new CalFacadeException(CalFacadeException.duplicateSubscription, 326 val.toString()); 326 327 } 327 328 c.add(val);
