From: Artur Signell Date: Sun, 25 Mar 2012 15:39:29 +0000 (+0300) Subject: Removed unused class X-Git-Tag: 7.0.0.alpha2~206 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=384d2c417680da3353573f9c4d8b5802bf7d234b;p=vaadin-framework.git Removed unused class --- diff --git a/src/com/vaadin/terminal/gwt/server/PaintableIdMapper.java b/src/com/vaadin/terminal/gwt/server/PaintableIdMapper.java deleted file mode 100644 index 4e69ab7cd1..0000000000 --- a/src/com/vaadin/terminal/gwt/server/PaintableIdMapper.java +++ /dev/null @@ -1,36 +0,0 @@ -/* -@VaadinApache2LicenseForJavaFiles@ - */ - -package com.vaadin.terminal.gwt.server; - -import java.io.Serializable; - -import com.vaadin.terminal.Paintable; - -/** - * Mapper between server side paintable IDs and the actual {@link Paintable} - * objects. - * - * @since 7.0 - */ -public interface PaintableIdMapper extends Serializable { - /** - * Get the {@link Paintable} instance corresponding to a paintable id. - * - * @param paintableId - * id to get - * @return {@link Paintable} instance or null if none found - */ - public Paintable getPaintable(String paintableId); - - /** - * Get the paintable identifier corresponding to a {@link Paintable} - * instance. - * - * @param paintable - * {@link Paintable} for which to get the id - * @return paintable id or null if none found - */ - public String getPaintableId(Paintable paintable); -}