01: /*
02: @COPYRIGHT@
03: */
04: package demo.sharededitor.models;
05:
06: final class Image extends Square {
07: // Nothing to implement here; This is just a signature/marker class for our demos - so the user will
08: // be able to easily identify the Image objects that are currently shared when browsing the shared
09: // object graphs in the TC Admin console.
10: }
|