congrats Icon
New! Tabnine Pro 14-day free trial
Start a free trial
Tabnine Logo
BwEvent.getRecipients
Code IndexAdd Tabnine to your IDE (free)

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

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

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

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

@Override
@NoProxy
public boolean removeRecipient(final String val) {
 Set<String> rs = getRecipients();
 if (rs == null) {
  return false;
 }
 return rs.remove(val);
}
origin: org.bedework.caleng/bw-calendar-engine-facade

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

@Override
@NoProxy
public void addRecipient(final String val) {
 Set<String> rs = getRecipients();
 if (rs == null) {
  rs = new TreeSet<>();
  setRecipients(rs);
 }
 if (!rs.contains(val)) {
  rs.add(val);
 }
}
origin: org.bedework.caleng/bw-calendar-engine-facade

@Override
@NoProxy
@NoDump
public int getNumRecipients() {
 Set<String> rs = getRecipients();
 if (rs == null) {
  return 0;
 }
 return rs.size();
}
origin: org.bedework.caleng/bw-calendar-engine-facade

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

public void setRecipients(Set<String> val) {
 if (val instanceof OverrideSet) {
  val = ((OverrideSet<String>)val).getOverrideCollection();
 }
 int res = doSet(ProxiedFieldIndex.pfiRecipients, false,
         getTarget().getRecipients(),
         ref.getRecipients(), val);
 if (res == setRefNull) {
  ref.setRecipients(null);
 }
 if (res == setRefVal) {
  ref.setRecipients(val);
 }
}
origin: org.bedework.caleng/bw-calendar-engine-ical

if (ev.getRecipients() != null) {
 ev.getRecipients().clear();
origin: org.bedework.caleng/bw-calendar-engine-facade

ts.append("recipients", getRecipients());
org.bedework.calfacadeBwEventgetRecipients

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

  • Running tasks concurrently on multiple threads
  • compareTo (BigDecimal)
  • orElseThrow (Optional)
    Return the contained value, if present, otherwise throw an exception to be created by the provided s
  • getSharedPreferences (Context)
  • Color (java.awt)
    The Color class is used to encapsulate colors in the default sRGB color space or colors in arbitrary
  • Menu (java.awt)
  • Queue (java.util)
    A collection designed for holding elements prior to processing. Besides basic java.util.Collection o
  • StringTokenizer (java.util)
    Breaks a string into tokens; new code should probably use String#split.> // Legacy code: StringTo
  • TimeUnit (java.util.concurrent)
    A TimeUnit represents time durations at a given unit of granularity and provides utility methods to
  • Modifier (javassist)
    The Modifier class provides static methods and constants to decode class and member access modifiers
  • 14 Best Plugins for Eclipse
Tabnine Logo
  • Products

    Search for Java codeSearch for JavaScript code
  • IDE Plugins

    IntelliJ IDEAWebStormVisual StudioAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimAtomGoLandRubyMineEmacsJupyter NotebookJupyter LabRiderDataGripAppCode
  • Company

    About UsContact UsCareers
  • Resources

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