Tabnine Logo
BwEvent.getExdates
Code IndexAdd Tabnine to your IDE (free)

How to use
getExdates
method
in
org.bedework.calfacade.BwEvent

Best Java code snippets using org.bedework.calfacade.BwEvent.getExdates (Showing top 12 results out of 315)

origin: org.bedework.caleng/bw-calendar-engine-facade

public Set<BwDateTime> getExdates() {
 return entity.getExdates();
}
origin: org.bedework.caleng/bw-calendar-engine-facade

 public Set<BwDateTime> getMasterCollection() {
  return getTarget().getExdates();
 }
};
origin: org.bedework.caleng/bw-calendar-engine-facade

@Override
@NoProxy
public void addExdate(final BwDateTime val) {
 Set<BwDateTime> c = getExdates();
 if (c == null) {
  c = new TreeSet<BwDateTime>();
  setExdates(c);
 }
 if (!c.contains(val)) {
  c.add(val);
 }
}
origin: org.bedework.caleng/bw-calendar-engine-facade

public Set<BwDateTime> getExdates() {
 Set<BwDateTime> c = super.getExdates();
 if (c == null) {
  c = new OverrideSet<BwDateTime>(BwEvent.ProxiedFieldIndex.pfiExdates,
                 ref, this) {
   public void setOverrideCollection(Set<BwDateTime> val) {
    ref.setExdates(val);
    setChangeFlag(true);
   }
   public Set<BwDateTime> getOverrideCollection() {
    return ref.getExdates();
   }
   public void copyIntoOverrideCollection() {
    Set<BwDateTime> mstr = getMasterCollection();
    if (mstr != null) {
     Set<BwDateTime> over = getOverrideCollection();
     over.addAll(mstr);
    }
   }
   public Set<BwDateTime> getMasterCollection() {
    return getTarget().getExdates();
   }
  };
  super.setExdates(c);
 }
 return c;
}
origin: org.bedework.caleng/bw-calendar-engine-facade

@Override
@NoProxy
public boolean hasExdates() {
 return !isEmpty(getExdates());
}
origin: org.bedework.caleng/bw-calendar-engine-facade

public void setExdates(Set<BwDateTime> val) {
 if (val instanceof OverrideSet) {
  val = ((OverrideSet<BwDateTime>)val).getOverrideCollection();
 }
 int res = doSet(ProxiedFieldIndex.pfiExdates, false,
         getTarget().getExdates(),
         ref.getExdates(), val);
 if (res == setRefNull) {
  ref.setExdates(null);
 }
 if (res == setRefVal) {
  ref.setExdates(val);
 }
}
origin: org.bedework.caleng/bw-calendar-engine-facade

dts = getExdates();
if (dts != null) {
 for (BwDateTime rdt: dts) {
origin: org.bedework.caleng/bw-calendar-engine-ical

 makeDlp(val, true, val.getExdates(), pl);
} catch (CalFacadeException cfe) {
 throw cfe;
origin: org.bedework.caleng/bw-calendar-engine-facade

originalVals = ev.getExdates();
if (checkMulti(ent, originalVals, update)) {
 ev.setExdates((Set)ent.getAddedValues());
origin: org.bedework.caleng/bw-calendar-engine-facade

for (BwDateTime dt: ev.getExdates()) {
 if (stringMatch(dt.getDtval(), val)) {
  return true;
origin: org.bedework.caleng/bw-calendar-engine-facade

ev.setExrules(clone(getExrules()));
ev.setRdates(clone(getRdates()));
ev.setExdates(clone(getExdates()));
origin: org.bedework.caleng/bw-calendar-engine-facade

ts.append("exdates", getExdates());
org.bedework.calfacadeBwEventgetExdates

Popular methods of BwEvent

  • addAttendee
  • addAvailableUid
    Add as available uid
  • addCategory
  • addComment
  • addContact
  • addFreeBusyPeriod
    Add a free/busy component
  • addPollItem
    Add vpoll item
  • addRdate
  • addVvoter
    Add vpoll vvoter
  • clearPollItems
    Clear the vpoll items
  • clearVvoters
    Clear the vpoll voters
  • compare
  • clearVvoters,
  • compare,
  • findDescription,
  • findSummary,
  • getAlarms,
  • getAttachments,
  • getAttendees,
  • getBusyType,
  • getCategories,
  • getClassification

Popular in Java

  • Updating database using SQL prepared statement
  • getExternalFilesDir (Context)
  • scheduleAtFixedRate (ScheduledExecutorService)
  • getContentResolver (Context)
  • Font (java.awt)
    The Font class represents fonts, which are used to render text in a visible way. A font provides the
  • FileWriter (java.io)
    A specialized Writer that writes to a file in the file system. All write requests made by calling me
  • InputStreamReader (java.io)
    A class for turning a byte stream into a character stream. Data read from the source input stream is
  • Thread (java.lang)
    A thread is a thread of execution in a program. The Java Virtual Machine allows an application to ha
  • Handler (java.util.logging)
    A Handler object accepts a logging request and exports the desired messages to a target, for example
  • Scheduler (org.quartz)
    This is the main interface of a Quartz Scheduler. A Scheduler maintains a registry of org.quartz.Job
  • Top Sublime Text plugins
Tabnine Logo
  • Products

    Search for Java codeSearch for JavaScript code
  • IDE Plugins

    IntelliJ IDEAWebStormVisual StudioAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimGoLandRubyMineEmacsJupyter NotebookJupyter LabRiderDataGripAppCode
  • Company

    About UsContact UsCareers
  • Resources

    FAQBlogTabnine AcademyTerms of usePrivacy policyJava Code IndexJavascript Code Index
Get Tabnine for your IDE now