Image.java
01 /*
02  *
03  * All content copyright Terracotta, Inc., unless otherwise indicated. All rights reserved.
04  *
05  */
06 package demo.sharededitor.models;
07 
08 final class Image extends Square {
09    // Nothing to implement here; This is just a signature/marker class for our demos - so the user will
10    // be able to easily identify the Image objects that are currently shared when browsing the shared 
11    // object graphs in the TC Admin console.
12 }