]> gerrit.simantics Code Review - simantics/platform.git/blob - bundles/org.simantics.g2d/src/org/simantics/g2d/element/handler/Adapter.java
Sync git svn branch with SVN repository r33324.
[simantics/platform.git] / bundles / org.simantics.g2d / src / org / simantics / g2d / element / handler / Adapter.java
1 /*******************************************************************************\r
2  * Copyright (c) 2007, 2010 Association for Decentralized Information Management\r
3  * in Industry THTH ry.\r
4  * All rights reserved. This program and the accompanying materials\r
5  * are made available under the terms of the Eclipse Public License v1.0\r
6  * which accompanies this distribution, and is available at\r
7  * http://www.eclipse.org/legal/epl-v10.html\r
8  *\r
9  * Contributors:\r
10  *     VTT Technical Research Centre of Finland - initial API and implementation\r
11  *******************************************************************************/\r
12 package org.simantics.g2d.element.handler;\r
13 \r
14 import org.simantics.g2d.element.ElementClass;\r
15 import org.simantics.g2d.element.ElementUtils;\r
16 import org.simantics.g2d.element.handler.impl.StaticObjectAdapter;\r
17 \r
18 /**\r
19  * This handler makes it possible to add adapters to different objects into an\r
20  * {@link ElementClass}. An element can have multiple Adapter handlers. For\r
21  * adaption, they are processed in the order of definition within the\r
22  * {@link ElementClass} and adaption should return the first\r
23  * <code>non-null</code> result returned by the any Adapter implementation.\r
24  * \r
25  * <p>\r
26  * See {@link ElementUtils#adapt(org.simantics.g2d.element.IElement, Class)} for\r
27  * a utility that implements the above logic.\r
28  * </p>\r
29  * \r
30  * @author Tuukka Lehtonen\r
31  * @see StaticObjectAdapter\r
32  */\r
33 public interface Adapter extends ElementHandler {\r
34 \r
35     /**\r
36      * @return\r
37      */\r
38     <T> T adapt(Class<T> toClass);\r
39 \r
40 }