1 /*
2 * This file is a part of CAST project.
3 * (c) Copyright 2007, AGH University of Science & Technology
4 * https://caribou.iisg.agh.edu.pl/trac/cast
5 *
6 * Licensed under the Eclipse Public License, Version 1.0 (the "License").
7 * You may not use this file except in compliance with the License.
8 * You may obtain a copy of the License at
9 * http://www.eclipse.org/legal/epl-v10.html
10 */
11 /*
12 * File: Remover.java
13 * Created: 2008-11-17
14 * Author: entrop
15 * $Id: Remover.java 2232 2009-01-04 22:59:53Z apohllo $
16 */
17
18 package pl.edu.agh.cast.model.mapper;
19
20 /**
21 * The remover allows to remove models.
22 * @author AGH CAST Team
23 *
24 */
25 public interface Remover {
26 /**
27 * The method which removes the model.
28 * @return True if the model was removed.
29 */
30 public boolean remove();
31 }