/** * See page 285 of DESIGN PATTERNS [1995]. * Implemented by Blueprint Technologies, Inc. */ /** * Package */ package com.blueprint.patterns.gamma.behavioral.memento; /** * Responsible for the memento's safekeeping. Never operates * on or examines the contents of a memento. */ public class Caretaker extends java.util.Vector { }