Caretaker.java
上传用户:hensond
上传日期:2021-12-27
资源大小:817k
文件大小:0k
源码类别:

软件工程

开发平台:

Java

  1. package com.company.section8;
  2. import java.util.HashMap;
  3. /**
  4.  * @author cbf4Life cbf4life@126.com
  5.  * I'm glad to share my knowledge with you all.
  6.  */
  7. public class Caretaker {
  8. //容纳备忘录的容器
  9. private HashMap<String,Memento> memMap = new HashMap<String,Memento>();
  10. public Memento getMemento(String idx) {
  11. return memMap.get(idx);
  12. }
  13. public void setMemento(String idx,Memento memento) {
  14. this.memMap.put(idx, memento);
  15. }
  16. }