01: /*******************************************************************************
02: * Copyright (c) 2007 IBM Corporation and others.
03: * All rights reserved. This program and the accompanying materials
04: * are made available under the terms of the Eclipse Public License v1.0
05: * which accompanies this distribution, and is available at
06: * http://www.eclipse.org/legal/epl-v10.html
07: *
08: * Contributors:
09: * IBM Corporation - initial API and implementation
10: ******************************************************************************/package org.eclipse.ui.internal;
11:
12: import java.util.Set;
13:
14: import org.eclipse.ui.IMemento;
15:
16: /**
17: * @since 3.3
18: *
19: */
20: interface IStickyViewManager {
21:
22: void remove(String perspectiveId);
23:
24: void add(String perspectiveId, Set stickyViewSet);
25:
26: void clear();
27:
28: void update(Perspective oldPersp, Perspective newPersp);
29:
30: void save(IMemento memento);
31:
32: void restore(IMemento memento);
33:
34: }
|