Tabnine Logo
Event
Code IndexAdd Tabnine to your IDE (free)

How to use
Event
in
com.macoscope.mvp.model

Best Java code snippets using com.macoscope.mvp.model.Event (Showing top 3 results out of 315)

origin: macoscope/RoomBookerMVP

public NewEventPresenter(NewEventUsecase usecase) {
  this.newEventUsecase = usecase;
  this.newEvent = new Event();
  this.startCalendar = java.util.Calendar.getInstance();
  this.endCalendar =  java.util.Calendar.getInstance();
  this.newEvent = new Event();
}
origin: macoscope/RoomBookerMVP

@Override
public void onBindViewHolder(EventViewHolder holder, int position) {
  Event event = eventsList.get(position);
  holder.summary.setText(getString(R.string.summary, event.getSummary()));
  holder.organizer.setText(getString(R.string.organizer, event.getOrganizer()));
  if (event.getStartDate() != null) {
    holder.startDate.setText(getString(R.string.start_date, event.getStartDate().toString()));
  }
  if (event.getEndDate() != null) {
    holder.endDate.setText(getString(R.string.end_date, event.getEndDate().toString()));
  }
  holder.status.setText(getString(R.string.status, event.getStatus()));
}
origin: macoscope/RoomBookerMVP

  @Override
  public void run() {
    showToast(getString(R.string.new_event_added, event.getSummary(), calendarName));
    finish();
  }
};
com.macoscope.mvp.modelEvent

Javadoc

Created by Piotr Ziomacki on 30/11/15. Copyright © 2015 Macoscope sp. z o.o. All rights reserved.

Most used methods

  • <init>
  • getEndDate
  • getOrganizer
  • getStartDate
  • getStatus
  • getSummary

Popular in Java

  • Reactive rest calls using spring rest template
  • getOriginalFilename (MultipartFile)
    Return the original filename in the client's filesystem.This may contain path information depending
  • startActivity (Activity)
  • getExternalFilesDir (Context)
  • Table (com.google.common.collect)
    A collection that associates an ordered pair of keys, called a row key and a column key, with a sing
  • Point (java.awt)
    A point representing a location in (x,y) coordinate space, specified in integer precision.
  • Thread (java.lang)
    A thread is a thread of execution in a program. The Java Virtual Machine allows an application to ha
  • Path (java.nio.file)
  • Comparator (java.util)
    A Comparator is used to compare two objects to determine their ordering with respect to each other.
  • Reference (javax.naming)
  • 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