01 /**
02 *
03 * All content copyright (c) 2003-2008 Terracotta, Inc.,
04 * except as may otherwise be noted in a separate copyright notice.
05 * All rights reserved.
06 *
07 */
08 package demo.sharededitor.models;
09
10 /**
11 * Description of the Class
12 *
13 *@author Terracotta, Inc.
14 */
15 final class Image extends Square {
16 // Nothing to implement here; This is just a signature/marker class for our demos - so the user will
17 // be able to easily identify the Image objects that are currently shared when browsing the shared
18 // object graphs in the TC Admin console.
19 }
|