]> source.dussan.org Git - vaadin-framework.git/commitdiff
Removed unused class
authorArtur Signell <artur@vaadin.com>
Sun, 25 Mar 2012 15:39:29 +0000 (18:39 +0300)
committerArtur Signell <artur@vaadin.com>
Sun, 25 Mar 2012 15:39:29 +0000 (18:39 +0300)
src/com/vaadin/terminal/gwt/server/PaintableIdMapper.java [deleted file]

diff --git a/src/com/vaadin/terminal/gwt/server/PaintableIdMapper.java b/src/com/vaadin/terminal/gwt/server/PaintableIdMapper.java
deleted file mode 100644 (file)
index 4e69ab7..0000000
+++ /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);
-}