コード例 #1
0
ファイル: IconManager.java プロジェクト: turesheim/riena
 /**
  * Returns the ID of the icon.
  *
  * @return ID
  */
 public String getID() {
   String id = name;
   if (state != null) {
     id += state.getDefaultMapping();
   }
   if (size != null) {
     id += size.getDefaultMapping();
   }
   return id;
 }
コード例 #2
0
 private SavedState(Parcel in) {
   super(in);
   state = IconState.valueOf(in.readString());
 }