Package org.rssowl.core.persist

Examples of org.rssowl.core.persist.IEntity.removeProperty()


      String newNotes = fNotesInput.getText();

      boolean save = false;

      if (!StringUtils.isSet(newNotes) && StringUtils.isSet(oldNotes)) {
        entity.removeProperty(NOTES_PREF_ID);
        save = true;
      } else if (!newNotes.equals(oldNotes)) {
        entity.setProperty(NOTES_PREF_ID, newNotes);
        save = true;
      }
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.