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

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

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

origin: macoscope/RoomBookerMVP

  @Override
  public void run() {
    showToast(getString(R.string.new_event_added, event.getSummary(), calendarName));
    finish();
  }
};
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()));
}
com.macoscope.mvp.modelEventgetSummary

Popular methods of Event

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

Popular in Java

  • Updating database using SQL prepared statement
  • addToBackStack (FragmentTransaction)
  • orElseThrow (Optional)
    Return the contained value, if present, otherwise throw an exception to be created by the provided s
  • setScale (BigDecimal)
  • ObjectMapper (com.fasterxml.jackson.databind)
    ObjectMapper provides functionality for reading and writing JSON, either to and from basic POJOs (Pl
  • IOException (java.io)
    Signals a general, I/O-related error. Error details may be specified when calling the constructor, a
  • MalformedURLException (java.net)
    This exception is thrown when a program attempts to create an URL from an incorrect specification.
  • SimpleDateFormat (java.text)
    Formats and parses dates in a locale-sensitive manner. Formatting turns a Date into a String, and pa
  • Collections (java.util)
    This class consists exclusively of static methods that operate on or return collections. It contains
  • Runner (org.openjdk.jmh.runner)
  • 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