Codota Logo
BwEvent.getEndType
Code IndexAdd Codota to your IDE (free)

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

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

  • Add the Codota plugin to your IDE and get smart completions
private void myMethod () {
Connection c =
  • Codota IconDataSource dataSource;dataSource.getConnection()
  • Codota IconString url;DriverManager.getConnection(url)
  • Codota IconIdentityDatabaseUtil.getDBConnection()
  • Smart code suggestions by Codota
}
origin: org.bedework.caleng/bw-calendar-engine-facade

public char getEndType() {
 return entity.getEndType();
}
origin: org.bedework.caleng/bw-calendar-engine-facade

public char getEndType() {
 return getTarget().getEndType();
}
origin: org.bedework.caleng/bw-calendar-engine-ical

private void addIcalTimezones(final Calendar cal, final BwEvent ev,
               final TreeSet<String> added,
               final TimeZoneRegistry tzreg) throws CalFacadeException {
 if (ev.getEntityType() == IcalDefs.entityTypeFreeAndBusy) {
  return;
 }
 if (!ev.getForceUTC()) {
  addIcalTimezone(cal, ev.getDtstart().getTzid(), added, tzreg);
  if (ev.getEndType() == StartEndComponent.endTypeDate) {
   addIcalTimezone(cal, ev.getDtend().getTzid(), added, tzreg);
  }
  //if (ev.getRecurrenceId() != null) {
  //  addIcalTimezone(cal, ev.getRecurrenceId().getTzid(), added, tzreg);
  //}
 }
}
origin: org.bedework.caleng/bw-calendar-engine-ical

if (val.getEndType() == BwEvent.endTypeDate) {
 if (todo) {
  DuePropType due = (DuePropType)makeDateDatetime(new DuePropType(),
  pl.add(of.createDtend(dtend));
} else if (val.getEndType() == BwEvent.endTypeDuration) {
 DurationPropType dur = new DurationPropType();
origin: org.bedework.caleng/bw-calendar-engine-facade

ann.setEndType(ev.getEndType());
ann.setCreatorHref(ev.getCreatorHref());
ann.setUid(ev.getUid());
origin: org.bedework.caleng/bw-calendar-engine-facade

res.setDtstart(getDtstart());
res.setDuration(getDuration());
res.setEndType(getEndType());
res.setTransparency(getTransparency());
res.setStatus(getStatus());
origin: org.bedework.caleng/bw-calendar-engine-facade

/**
 * @return a copy suitable for tombstoning.
 */
@NoProxy
public BwEvent cloneTombstone() {
 final BwEvent ev = new BwEventObj();
 super.copyTo(ev);
 ev.setEntityType(getEntityType());
 ev.setName(getName());
 ev.setDtstart(getDtstart());
 ev.setDtend(getDtend());
 ev.setEndType(getEndType());
 ev.setDuration(getDuration());
 ev.setNoStart(getNoStart());
 ev.setDeleted(getDeleted());
 ev.setDtstamp(getDtstamp());
 ev.setLastmod(getLastmod());
 ev.setCreated(getCreated());
 ev.setStag(getStag());
 ev.setUid(getUid());
 ev.setRecurring(false);
 ev.setTombstoned(true);
 //ev.setDtstamps();
 return ev;
}
origin: org.bedework.caleng/bw-calendar-engine-ical

if (val.getEndType() == StartEndComponent.endTypeDate) {
 if (todo) {
  Due due = val.getDtend().makeDue(tzreg);
} else if (val.getEndType() == StartEndComponent.endTypeDuration) {
 addProperty(comp, new Duration(new Dur(val.getDuration())));
origin: org.bedework.caleng/bw-calendar-engine-facade

ev.setDtstart(getDtstart());
ev.setDtend(getDtend());
ev.setEndType(getEndType());
ev.setDuration(getDuration());
ev.setNoStart(getNoStart());
org.bedework.calfacadeBwEventgetEndType

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

  • Making http post requests using okhttp
  • setContentView (Activity)
  • putExtra (Intent)
  • getSystemService (Context)
  • String (java.lang)
  • SocketTimeoutException (java.net)
    This exception is thrown when a timeout expired on a socket read or accept operation.
  • ByteBuffer (java.nio)
    A buffer for bytes. A byte buffer can be created in either one of the following ways: * #allocate(i
  • SecureRandom (java.security)
    This class generates cryptographically secure pseudo-random numbers. It is best to invoke SecureRand
  • Collection (java.util)
    Collection is the root of the collection hierarchy. It defines operations on data collections and t
  • LogFactory (org.apache.commons.logging)
    A minimal incarnation of Apache Commons Logging's LogFactory API, providing just the common Log look
Codota Logo
  • Products

    Search for Java codeSearch for JavaScript codeEnterprise
  • IDE Plugins

    IntelliJ IDEAWebStormAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimAtomGoLandRubyMineEmacsJupyter
  • Company

    About UsContact UsCareers
  • Resources

    FAQBlogCodota Academy Plugin user guide Terms of usePrivacy policyJava Code IndexJavascript Code Index
Get Codota for your IDE now